Table of Contents
Add Later.
To get a local copy up and running follow these simple example steps.
- Instal lastest npm version
npm install npm@latest -g
-
Set up the Python development environment. We recommend using a Python virtual environment.
-
Optional:
- Download and install MongoDB Compact.
Assuming you have Python setup, to run locally, do the following commands.
- Clone the repo
git clone https://github.com/cs130-w21/7.git
- Go to backend directory and run the server
cd backend virtualenv env // create and start a virtual environment . env/bin/activate // activate the virtual environment pip3 install -r requirements.txt // Install the project dependencies pip3 install -r requirements.txt --user // optional: MacOS users python3 manage.py migrate python3 manage.py createsuperuser // optional: create admin account python3 manage.py makemigrations yummy python3 manage.py migrate // run migrate again python3 manage.py runserver // start the development server on localhost:8000
- Go to frontend directory, install NPM packages and run the frontend.
cd frontend npm install // Install the React dependencies npm start // open localhost:3000 browser to deploy the application
Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.
For compile, test, packaging and deploy, we do that automatically everytime a Pull Request is created. You can use the command git push origin <your-branch>
to create a PR to trigger the build automatically.
If you prefer to trigger the build manually, you can access Group 7 Travis CI. Then select Trigger Build
.
There will be a pop-up that let you choose Branch
, Commit Message
, and Custom Config
. Once set, press Trigger custom build
to start the build.
If done correctly, the builds will successfully start.
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request