mirror of
https://github.com/pinry/pinry.git
synced 2026-01-22 15:22:40 +01:00
639 B
639 B
Updating Passwords
Currently we don't have a good "forgot my password" method on Pinry since that generally requires an email to be sent. The current method for changing passwords involves:
- Create a new super user
pipenv run python manage.py createsuperuser - Login to your admin panel
{your_website_url}/admin/ - Go to the users section, select the user, change their password.
Inside Docker
If you use that command to create superuser inside docker,
you could first exec to docker via command like
docker exec -it <container-id> bash and then use
python manage.py createsuperuser --settings=pinry.settings.docker