Home > other >  Can I access Django Admin Site using deployed URL?
Can I access Django Admin Site using deployed URL?

Time:03-16

I just deploy my first Django Rest Framework into Heroku. Site URL is https://mysite.herokuapp.com/

I already can access admin site using http://127.0.0.1:8000/ through created superuser account.

But How I am gonna access the admin site using the deployed url?.

Thanks

CodePudding user response:

The contents in the databases are not identically the same if you have not synced those databases yet. You might find this thread useful.

CodePudding user response:

Just Visit

https://mysite.herokuapp.com/admin/

Dont need to do anything.

  • Related