This is an example of a full stack application consisting of
- Frontend
- Backend
- Database
- Cache
- Background Processing
git clone https://github.com/mochawich/testly.git
cd testly
docker-compose build
docker-compose run backend python manage.py migrate
docker-compose up
Angular 1.x, TypeScript, and Webpack
cd frontend
npm install
npm start
Current frontend/dist
already contains everything needed to host the frontend.
cd frontend
npm run build
Python 3.6 and Django 1.11
cd backend
pip install -r requirements.txt
python manage.py runserver
Run this on initial setup and after making changes to the backend models.
docker-compose run backend python manage.py migrate