-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create repo #7
Comments
@tds455 Note: I setup the django (backend) application with |
Full structure view
|
This is fine - It'll make development much easier if we only containerise when we push to main. Best to just use venv / pipenv for local development. |
I believe sqlite3 is the default local db for django. We'll need to update manage.py to point towards a local postgres container instead. |
Yeah, we will need to make quite a few configuration adjustments. Of course we won't be relying on sqlite3. It is better to have a dedicated database layer that is separate from the django api/server. By doing so we will reduce any risk of server being loaded. So this is where PostgreSQL container will come in :) |
Setup the basic structure of the application as followed.
The text was updated successfully, but these errors were encountered: