Skip to content

Latest commit

 

History

History
35 lines (20 loc) · 1.06 KB

First User Setup.md

File metadata and controls

35 lines (20 loc) · 1.06 KB

First User Setup

To setup admin user on enigma, follow these steps:

  1. Setup django superuser
  • Exec into the Enigma container if you are using docker

    docker exec -it enigma bash
  • Run the following command in the container to create a superuser

    python manage.py createsuperuser
  • Fill in the username, email and password for admin user

    Checkout detailed instructions are on Django documentation here.

  1. Sign-in into the admin site
  • Login to the admin site with the credentials created above.

    The admin site should be available at /admin with the base url on which enigma is hosted.

    This will be http://localhost:8000/admin if you are running this locally

  1. Now you can view the Enigma app dashboard, by navigating to enigma url.

    This will be http://localhost:8000/ if you are running this locally

To create additional users, follow the doc here.