- Install docker (if you haven't yet)
- copy the
env.examplefile to a file named.env - Update the necessary environment variables
- Run the application
docker-compose up The application will be available on localhost.
-
Create virtualenv
-
Install dependencies
pip install -r requirements.txt- Create a .env file from env.example
cp env.example ./.envfor windows, use this command instead
copy env.example .\.env- Run the server
python manage.py makemigrations
python manage.py migrate
python manage.py runserver- Move to the client directory
cd client- Install dependencies
npm installor, using yarn
yarn install- Start the development version
npm run startor, using yarn
yarn start