.gitignore
*.pyc
*~
/.vscode
__pycache__
myvenv
db.sqlite3
/static
.DS_Store
*.swp
*.swo
$ git add .
$ git commit -m "Initial commit"
$ git push origin master
Assuming you already have a PythonAnywhere account
$ git clone https://github.com/<your-github-username>/my-first-blog.git
$ cd my-first-project
$ virtualenv --python=python3.6 myvenv
Running virtualenv with interpreter /usr/bin/python3.6
[...]
Installing setuptools, pip...done.
$ source myvenv/bin/activate
(myvenv) $ pip install django~=2.0
Collecting django
[...]
Successfully installed django-2.0.6
(mvenv) $ python manage.py migrate
Operations to perform:
[...]
Applying sessions.0001_initial... OK
(mvenv) $ python manage.py createsuperuser
- Hit the logo
- Click
Web
on the menu - Click
Add a new web app
- Confirm
Domain name
- You have to pay extra money if you want to customize it
- Select
manual configuration
- Select
Python 3.6
-
Click
Web
on the menu -
Scroll down
-
You'll see
Enter the path to a virtualenv
-
Type the following path
/home/<your-username>/my-first-blog/myvenv/
- Copy & Paste it
import os
import sys
path = '/home/<your-PythonAnywhere-username>/my-first-blog' # Type your PythonAnywhere account!
if path not in sys.path:
sys.path.append(path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'
from django.core.wsgi import get_wsgi_application
from django.contrib.staticfiles.handlers import StaticFilesHandler
application = StaticFilesHandler(get_wsgi_application())
- Change mysite from
mysite.settings
to the directory name where yoursettings.py
at - Save it (I mean, of course)