Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scisamir/tholvi98
https://github.com/scisamir/tholvi98
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/scisamir/tholvi98
- Owner: scisamir
- Created: 2023-12-12T17:06:17.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-15T15:56:21.000Z (about 1 year ago)
- Last Synced: 2023-12-15T20:12:32.100Z (about 1 year ago)
- Language: Python
- Homepage: https://myfe2eprojsci.vercel.app
- Size: 2.27 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mood Tracker
A simple flask web app designed to help users track and log thier daily moods along with associated activities. The application uses SQLAlchemy for database interaction, Flask-Login for user authentication, and oauthlib for integrating OAuth authentication with Google.
## How to run the app locally
1. Clone this repository
```
git clone https://github.com/scisamir/flask_e2e_project.git
cd flask_e2e_project
```2. Install python virtual env (if not installed) and activate
```
pip install virtualenv
python -m venv env
source env/bin/activate
```3. Install python requirements
```
pip install -r requirements.txt
```4. Run the app locally
```
cd app
python app.py
```The app should be started at `127.0.0.1:5000`
## Using docker
1. Pull the image from docker
```
docker pull scisamir/flask_e2e_project
```2. Run the image container
```
docker run -p 5000:5000 scisamir/flask_e2e_project
```The app should be started at `127.0.0.1:5000`