Project Description
Use a virtualenv to create an isolated enviorment
Run the make command to install requirements
make
or with pip manually
pip3 install -r requirements.txt
Run description
make run
or with python manually
python3 run.py
make test
or with ... manually
run test command
test check for ...
Report the failed test [here](issue link)!
- [Author Name](author link)
This project is licensed under the MIT License - see the LICENSE file for details
This Readme was created with pystarter
pip3 install pystarter
Code and documentation below and in GoogleLogin.md and References.md are done modified from this repo: https://github.com/Abhiramborige/Flask-React-Google-Login
- create .env file
REACT_APP_BACKEND_URL= http://localhost:8000
- Use the commands to start the app locally.
cd google-login-react
npm install
npm start
- create .env file
DB_NAME=
CLUSTER_URL=
GOOGLE_CLIENT_ID=
SECRET_KEY=
ALGORITHM=
PROJECT_ID=
BACKEND_URL=http://127.0.0.1:8000
FRONTEND_URL=http://localhost:3000
- Go to https://console.cloud.google.com/ and create client secrets and configuration file
- Save as client-secret.json
- Use the commands to start the server locally.
cd flask-server-google
pip install virtualenv
virtualenv google_env
cd google_env/Scripts
activate
cd ..
cd ..
pip install -r requirements.txt
python app.py