Skip to content

Latest commit

 

History

History
executable file
·
39 lines (28 loc) · 1.17 KB

README.md

File metadata and controls

executable file
·
39 lines (28 loc) · 1.17 KB

First-time setup

  1. Make sure Python 3.7x and Pipenv are already installed. See here for help.
  2. Clone the repo and configure the virtualenv:
$ git clone https://github.com/fredIV/django-sosa.git
$ cd django-sosa
$ pipenv install
$ pipenv shell
  1. Set up the initial migration for our custom user models in users and build the database.
(django-sosa-hash) $ python manage.py makemigrations users
(django-sosa-hash) $ python manage.py migrate
  1. Create a superuser:
(django-sosa-hash) $ python manage.py createsuperuser
  1. Confirm everything is working:
(django-sosa-hash) $ python manage.py runserver

Load the site at http://127.0.0.1:8000.

Next Steps