Collaborative Resource and Understanding Exchange Program
-
Install Front-end dependencies
Run the following command from the project root folder
cd clientnpm install -
Install Back-end dependencies
Make sure you have
pipenvinstalled (pip install pipenv)Run the following command from the project root folder
pipenv install -
Setup the database
rm server/db.sqlite3 && touch server/db.sqlite3pipenv shellserver/manage.py migrateserver/manage.py loaddata users datasets analyses files
-
To run the server
Activate the virtual environment
pipenv shellStart the server
server/manage.py runserver -
To run the client
cd clientnpm start