[Answer]-Setup and connect to database for Django on AWS

1👍

You need to run the initial migrations to create the tables. From the console verify that you have a connection to your db by running ./manage.py dbshell. If that works, you have the connection.

Then you need to either run the initial ./manage.py syncdb (for django <1.7) or if you’re running django 1.7+ you will run ./manage.py migrate

Leave a comment