Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 593 Bytes

README.md

File metadata and controls

34 lines (28 loc) · 593 Bytes

Setup

To setup this repository, create a new virtual environment and activate it with

python3 -m venv venv
source venv/bin/activate

Install all python dependencies with

pip3 install -r requirements.txt

Install all node dependencies with

npm i

Setup the backend database and create some dummy data with

python3 manage.py migrate
python3 manage.py createtestdata

Now, in two separate terminal windows,

  • Run the Django server:

    python3 manage.py runserver
  • Compile the React code (watching changes):

    npm run watch