🖌️ Material Design: Intuitive UI based on the world's most widespread design language.
🏃 Single Page Application: Fast, responsive UX increase productivity and avoids fullscreen refreshes.
🐍 Python Django and Postgres
- Create <model_garden_root>/backend/.env. Ask colleagues to share this file content.
- Build Docker Image: <model_garden_root>/backend/README.md#build-docker-image.
- Run the database container:
docker-compose up -d postgres
- Run the backend container:
docker-compose up -d backend
- Run the worker container:
docker-compose up -d worker
-
Add <model_garden_root>/frontend/.env if absent.
-
Setup local backend and frontend ports in <model_garden_root>/frontend/.env:
PORT=4200
REACT_APP_BACKEND_PORT=9000
- Install packages in <model_garden_root>/frontend/ dir
npm install
- Run front-end in <model_garden_root>/frontend/ dir
npm start
To run additional JS-lint use npm run lint -s
in
<model_garden_root>/frontend/ dir.
This project was bootstrapped with Create React App.