/flask-login-google

Flask Login with Google Login Boilerplate to have a ready web app with user authentication provided by Google

Primary LanguageHTML

Flask Login with Google Boilerplate

Flask Login with Google Login Boilerplate to have a ready web app with user authentication provided by Google.

Login with Google:

Dashboard for the logged-in user:

Technologies

Deployment

Virtual Environment using Bash

  1. Creation of a virtual environments done by executing the command venv
  2. Command to activate virtual environment
  3. Install dependencies
  4. List the libraries installed on your environment
  5. Do your work!
  6. When you are done, the command to deactivate virtual environment
$ python3 -m venv env/
$ source env/bin/activate
(env) $ pip install -r requirements.txt
(env) $ touch src/config.py
(env) $ python src/app.py
Initialized the database
(env) $ python src/app.py
Access via the web to https://127.0.0.1:5000/
(env) $ deactivate

Resources