Personal website built in Django
Jesús c7c49f5074 Remove check integrity for estilos.min.css | 2 years ago | |
---|---|---|
django | 2 years ago | |
.drone.yml | 2 years ago | |
.gitignore | 2 years ago | |
AUTHORS | 6 years ago | |
HACKING.md | 2 years ago | |
LICENSE | 6 years ago | |
README.md | 2 years ago | |
config.env.example | 2 years ago | |
docker-compose.yml | 2 years ago |
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