To get a pretty version of this document, run
$ markdown README > README.html
See LICENSE file.
See AUTHORS file.
More detail in requirements.txt
and requirements_prod.txt
; it is best to
use virtualenv and pip to handle these. But if you insist on (Arch GNU/Linux)
packages, you will probably want the following:
Clone personal-site
$ git clone https://git.sr.ht/~heckyel/personal-site
Run virtualenv
.
$ cd personal-site && virtualenv ./venv/
Activate the virtualenv.
$ source ./venv/bin/activate
Install dependencies through pip
.
$ pip install -r django/requirements.txt
Copy settings.py.example
to settings.py
and modify.
Make sure to uncomment the appropriate database section (either sqlite or
PostgreSQL).
$ cp -v django/personalsite/settings.py.example django/personalsite/settings.py
Check syntax.
$ python django/manage.py check --deploy
Migrate changes.
$ python django/manage.py migrate
Create superUSER
$ python django/manage.py createsuperuser
Use the following commands to start a service instance
$ python django/manage.py runserver
The HACKING.md file helps the deployment in production