You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
# "manage.py" is the default Django app management tool. `runserver` starts the development server on the specified host and port using Django's built-in webserver.
# Django's development server is not suitable for production; you'll need to replace the command with either gunicorn, nginx, or heroku at some point just before production
env_file:
- ./Backend/env/.env.dev
frontend:
build: ./Frontend/
image: tieje/frontend:latest
depends_on:
- backend
# For when the time comes. The book says we need a volume within the db service and a volume outside of the db service...
# it's totally possible to just create a new volume every time, but it's simple extension of code to make it so that the volume is available to multiple services.
# For example, what if we wanted another container that backs up the data of the volume?