Django simple username email login signup page .
Log In | Create an account | Authorized page |
---|---|---|
Password reset | Set new password | Password change |
---|---|---|
pip install pipenv
pipenv install
pipenv shell
Configure the settings (connection to the database, connection to an SMTP server, and other options)
-
Edit
source/app/conf/development/settings.py
if you want to develop the project. -
Edit
source/app/conf/production/settings.py
if you want to run the project in production.
python manage.py migrate
python manage.py collectstatic
Just run this command:
python manage.py runserver