1
Install Django
If you don’t already have Django installed, you can install it using pip:
2
Create a new Django project
myproject
directory.3
Create a new app
myproject
directory.If all went well, the myproject
directory should now have the following structure:4
Setting up Nile Database
Edit the You can find your database credentials in the Nile dashboard.
myproject/settings.py
file to include the Nile database URL:5
Run the migrations built-in migrations
Django has several default modules that need database tables created. To create these tables, run the following command:This will create the tables in the database.
6
Create a new model
In And update the installed apps in
myapp/models.py
, create a new model:myproject/settings.py
to include your app:7
Create a new migration
To create a new migration, run the following command:This will create a new migration file in the
myapp/migrations
directory.8
Run the migration
To run the migration, run the following command:This will apply the migration to the database.Connect to your database and see a new table created, called
myapp_mymodel
.