- Listen on localhost:5000
- Authentication form is rendered at http://localhost:5000/
- User is redirected to the profile page if successfully authenticated
- Profile page is shown for the authenticated user only at http://localhost:5000/profile
- User name and password are stored in Redis
- Execute
pip install -r requirements.txt
- Start a redis via docker:
docker run -p 6379:6379 -it redis/redis-stack:latest
- Execute
python app.py
- Open http://localhost:5000