-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,44 @@ | ||
# Repo for browser based StarControl Dev | ||
# StarControl 2020 Web UI | ||
|
||
Describe the project | ||
## Development | ||
|
||
## folder structure | ||
* Explain folder structure here | ||
* mandatory to include a documentation folder for, well, documentations | ||
This section contains instructions on the development process. | ||
See also [Create React App](https://create-react-app.dev/). | ||
|
||
### Pre-requisites | ||
|
||
* Node.js | ||
* npm | ||
|
||
### Install packages | ||
|
||
``` | ||
npm install | ||
``` | ||
|
||
### Start development server | ||
|
||
``` | ||
npm run start | ||
``` | ||
|
||
## Build | ||
|
||
### Pre-requisites | ||
|
||
* JDK 8 | ||
|
||
### Standalone simulator | ||
|
||
This section contains instructions on building the standalone simulator (it includes the web UI). | ||
|
||
**NOTE** | ||
* This requires access to the `starfish` repository. | ||
|
||
* Check out the `starfish` repository to the same directory as the `r2c2` repository (such that they are siblings in the same directory). | ||
* Switch to the base directory of `starfish`. | ||
* Run: | ||
``` | ||
./gradlew clean && ./gradlew :simulator2:build | ||
``` | ||
* The simulator distribution can be found at `simulator2/build/distributions/starfish-simulator.zip`. |