1

Creating a Django project

 3 years ago
source link: https://help.dreamhost.com/hc/en-us/articles/360002341572-Creating-a-Django-project
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Creating a Django project

To run the commands in this article, you must log into your server via SSH with your Shell user. View the following articles for more information:

The following instructions assume you've created a virtual environment titled venv using the links above.

  1. Run the following commands in order to create your Django project within this environment:
    [server]$ cd ~/example.com
    [server]$ source ~/example.com/venv/bin/activate
    (venv) [server]$ python3 venv/bin/django-admin.py startproject projectname
    • Replace example.com with your domain name.

    When you run the startproject command, it creates a new folder in your site directory named whatever your Django project name is.

  2. In order for Passenger to pick up your project, create a passenger_wsgi.py file within your site's top level directory (/home/username/example.com). Add the following:
    import sys, os
    INTERP = "/home/username/example.com/venv/bin/python3"
    #INTERP is present twice so that the new python interpreter 
    #knows the actual executable path if sys.executable != INTERP: os.execl(INTERP, INTERP, *sys.argv) cwd = os.getcwd() sys.path.append(cwd) sys.path.append(cwd + '/djangoprojectname') #You must add your project here sys.path.insert(0,cwd+'/venv/bin') sys.path.insert(0,cwd+'/venv/lib/python3.8/site-packages') os.environ['DJANGO_SETTINGS_MODULE'] = "djangoprojectname.settings" from django.core.wsgi import get_wsgi_application application = get_wsgi_application()

    Be sure to replace the following in the passenger_wsgi.py file:

    • The path to your local python version in line #2. Run which python3 to confirm:
      (venv) [server]$ which python3
      /home/username/example.com/venv/bin/python3
    • Your virtualenv project name on lines 11 and 12
    • Your Django project name on lines 9 and 14
    • Your Python3 version on line 12
  3. Set up Django's static file settings in order to correctly serve images, CSS, and JavaScript as you will need this for the admin interface to work. For example:
    • Open the projects settings.py file found at example.com/projectname/projectname/settings.py. Scroll to the bottom and you will find that the STATIC_URL is probably configured to /static/.
    • Add another line to set the location on the server of the actual static directory. Make sure to change username to your Shell user.
    STATIC_ROOT = '/home/username/example.com/public/static/'
  4. In your /home/username/example.com/ directory, make sure to create this /static directory.
    (venv) [server]$ cd ~/example.com/public
    (venv) [server]$ mkdir static
    • This will be the location where Django will put all of your static files – you shouldn't put stuff here manually as it gets overwritten. View the following link for further details:
    https://docs.djangoproject.com/en/1.8/howto/static-files/
  5. Run the collectstatic command to set up the static items for the admin interface:
    (venv) [server]$ cd ~/example.com/projectname/
    (venv) [server]$ python3 manage.py collectstatic
  6. Set up your database as required within the settings.py file. The section of the settings.py file originally looks like this:
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.sqlite3',
            'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
        }
    }
    
  7. Edit to make the following additions with your actual database credentials:
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.mysql',
            'NAME': 'mydatabase',
            'USER': 'mydatabaseuser',
            'PASSWORD': 'mypassword',
            'HOST': 'mysql.example.com',
            'PORT': '3306',
        }
    }
    
  8. The default is to use sqlite3, which may be suitable for the smallest of sites, but it's likely you'll want to set up a mysql database.
  9. Also in your settings.py file, update the ALLOWED_HOSTS field with your domain name. At first, it appears like this:
    ALLOWED_HOSTS = []
    Update it to include your domain name.
    ALLOWED_HOSTS = ['example.com' , 'www.example.com']
  10. Make sure you're in your project directory:
    (venv) [server]$ cd ~/example.com/projectname
  11. Make sure mysqlclient is installed.
    (venv) [server]$ pip3 install mysqlclient
  12. Once configured, run migrate in your project directory:

    When running the following command, you will see this warning message:

    ?: (mysql.W002) MySQL Strict Mode is not set for database connection 'default'
            HINT: MySQL's Strict Mode fixes many data integrity problems in MySQL, 
    such as data truncation upon insertion, by escalating warnings into errors.
    It is strongly recommended you activate it.
    See: https://docs.djangoproject.com/en/2.2/ref/databases/#mysql-sql-mode

    This warning means your database does not have Strict Mode enabled. You can continue to install Django normally if you like, but if you would prefer your database to use Strict Mode, the only option would be to purchase a private MySQL server.

    Once added, contact DreamHost support. They will be able to adjust this setting on the server for you.

    (venv) [server]$ python3 manage.py migrate
    Operations to perform:
    Apply all migrations: admin, auth, contenttypes, sessions
    Running migrations:
    Applying contenttypes.0001_initial... OK
    Applying auth.0001_initial... OK
    Applying admin.0001_initial... OK
    Applying admin.0002_logentry_remove_auto_add... OK
    Applying contenttypes.0002_remove_content_type_name... OK
    Applying auth.0002_alter_permission_name_max_length... OK
    Applying auth.0003_alter_user_email_max_length... OK
    Applying auth.0004_alter_user_username_opts... OK
    Applying auth.0005_alter_user_last_login_null... OK
    Applying auth.0006_require_contenttypes_0002... OK
    Applying auth.0007_alter_validators_add_error_messages... OK
    Applying auth.0008_alter_user_username_max_length... OK
    Applying sessions.0001_initial... OK
  13. Create a superuser:
    (venv) [server]$ python3 manage.py createsuperuser
    Username (leave blank to use 'username'): my_django_user
    Email address: [email protected]
    Password:
    Password (again):
    Superuser created successfully.
  14. Navigate to your /home/username/example.com directory.
    (venv) [server]$ cd /home/username/example.com
  15. Add a /tmp/restart.txt file:
    (venv) [server]$ mkdir tmp
    (venv) [server]$ touch tmp/restart.txt
  16. Whenever you make a change to your configuration, make sure to run the following in your site's directory to notify Passenger of the change:
    (venv) [server]$ touch tmp/restart.txt

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK