diff options
author | Jesús <heckyel@hyperbola.info> | 2021-05-30 18:17:24 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-05-30 18:17:24 -0500 |
commit | f6b39a2b4cf9d6b25ecf924eb53433d4d1c807f6 (patch) | |
tree | f1bb12c5fa566a7803f8982b2fd15d24e615a835 /README.md | |
parent | 197586a2d83ea7d18fb7ee5fa3c3db6638416d61 (diff) | |
download | personal-site-f6b39a2b4cf9d6b25ecf924eb53433d4d1c807f6.tar.lz personal-site-f6b39a2b4cf9d6b25ecf924eb53433d4d1c807f6.tar.xz personal-site-f6b39a2b4cf9d6b25ecf924eb53433d4d1c807f6.zip |
update documentation
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -31,41 +31,41 @@ packages, you will probably want the following: 1. Clone personal-site - git clone https://libregit.org/heckyel/personal-site.git + $ git clone https://libregit.org/heckyel/personal-site.git 2. Run `virtualenv`. - cd personal-site && virtualenv ./venv/ + $ cd personal-site && virtualenv ./venv/ 3. Activate the virtualenv. - source ./venv/bin/activate + $ source ./venv/bin/activate 4. Install dependencies through `pip`. - pip install -r requirements.txt + $ pip install -r requirements.txt 5. Copy `settings.py.example` to `settings.py` and modify. Make sure to uncomment the appropriate database section (either sqlite or PostgreSQL). - cp -v personalsite/settings.py.example personalsite/settings.py + $ cp -v personalsite/settings.py.example personalsite/settings.py 6. Check syntax. - python manage.py check --deploy + $ python manage.py check --deploy 7. Migrate changes. - python manage.py migrate + $ python manage.py migrate 8. Create superUSER - python manage.py createsuperuser + $ python manage.py createsuperuser 9. Use the following commands to start a service instance - python manage.py runserver + $ python manage.py runserver ## Production Installation |