Whats Django Adminpanel and how to access it?
-
Hi all
Using Paperless-ngx but never really changed any settings. It just worked great for me out of the box. First thing I did was to create another account and making it superuser. I then erased the auto-created admin account.
Today I was playing around with some settings and realized there is a "Django Adminpanel" which I can't access. Is it because I erased the auto created admin account? How can I get access to it and whats its suppose? Any important settings there?
Thanks a lot and greetings from Germany
Boris -
Since you nuked admin user, you can use the web terminal to run django commands.
# cd /app/code/src # python3 manage.py createsuperuser Username (leave blank to use 'root'): Email address: test@cloudron.io Password: Password (again): Superuser created successfully.
-
@girish said in Whats Django Adminpanel and how to access it?:
python3 manage.py createsuperuser
This one worked. Logged in with new account and gave my main account the missing permissions.
Thank you very much
-
-