Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jameelkaisar/Quantified-Self-App
Capstone Project for Modern Application Development I Course (IIT Madras)
https://github.com/jameelkaisar/Quantified-Self-App
capstone-project flask habits health python quantified-self tracking
Last synced: about 2 months ago
JSON representation
Capstone Project for Modern Application Development I Course (IIT Madras)
- Host: GitHub
- URL: https://github.com/jameelkaisar/Quantified-Self-App
- Owner: jameelkaisar
- Created: 2022-02-20T12:56:43.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-11T16:12:45.000Z (over 1 year ago)
- Last Synced: 2024-08-08T00:43:15.273Z (5 months ago)
- Topics: capstone-project, flask, habits, health, python, quantified-self, tracking
- Language: Python
- Homepage: https://quantified-self-app.ajmiakh.repl.co
- Size: 2.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- project-awesome - jameelkaisar/Quantified-Self-App - Capstone Project for Modern Application Development I Course (IIT Madras) (Python)
README
# Quantified-Self-App
Capstone Project for Modern Application Development I Course (IIT Madras)## About
Some text about this project: features, technical details, etc.## Installation
### Requirements
- Python 3
- pip
- git### Clone the repository
```
git clone https://github.com/JameelKaisar/Quantified-Self-App.git
```### Change directory to project folder
```
cd Quantified-Self-App
```### Install `virtualenv`
```
pip install virtualenv
```### Add `virtualenv` to PATH (Unix only)
```
export PATH="$HOME/.local/bin:$PATH"
```### Create a virtual environment
```
virtualenv venv
```### Activate the virtual environment
- Unix
```
source venv/bin/activate
```
- Windows
```
venv\Scripts\activate.bat
```### Install the dependencies
```
pip install -r requirements.txt
```### Initialize the application
- Unix
```
python3 app_init.py
```
- Windows
```
python app_init.py
```### Start the application
- Unix
```
python3 app_run.py
```
- Windows
```
python app_run.py
```### Deactivate the virtual environment
```
deactivate
```## Submission Details
- Name: Jameel Kaisar Khan
- Roll Number: 21F1006786
- Course Name: Modern Application Development I
- Course Code: BSCCS2003
- Course Term: January 2022