Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 610 Bytes

Readme.md

File metadata and controls

27 lines (22 loc) · 610 Bytes

Universe Django Tutorial

Getting started

in the project root create new virtualenv, install dependencies and do the migrations

for example

python3 -m venv djangoenv
source djangoenv/bin/activate
pip install -r requirements.txt
python manage.py migrate

Running the server

python manage.py runserver

Accessing admin-panel when server is running

First create superuser with

python manage.py createsuperuser

Then you can access the admin panel by default from localhost:8000/admin

Accessing api-root

API-root can be found by default in localhost:8000/universe