Download And Setup The Repository
- Navigate to the location on your PC where you want the repository to be located.
- Note that Git will automatically create a folder with the source code inside of it, so you don't need to do that yourself.
- Right click in your selected location and choose "Git Bash Here".
- Inside Git bash, execute the following command (the default command to paste inside of Git Bash is Shift+Insert):
git clone [email protected]:davidmwhynot/stariumxcv.prod.git
- You may be asked to verify the authentecity of an unkown host (see image below). Simply type
yes
and press Enter. - Once the clone is finished, verify that the
stariumxcv.prod
folder was created by running the following command:ls
- You should see a list of the files and folders that are inside your current folder. Among them should be
stariumxcv.prod
. - Next, navigate into the production repository by executing the following command:
cd stariumxcv.prod
- Checkout the
static
branch:git checkout static
- Run the following command to install a few required Node.js packages:
npm install
- Once the dependencies are downloaded and installed, you can verify that everything worked and start your development server by running the following command:
npm start
- If everything went fine, the homepage of your local version of StariumXCV should open in your default web browser.
- Go back to Git Bash and press Ctrl+C to stop the development server.
Assuming you didn't encounter any errors, you are now ready to begin working inside the production repository.
Please read these articles on our developer workflow before making changes to the production repository.