https://github.com/pawankolhe/flask-task-app
https://github.com/pawankolhe/flask-task-app
flask
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pawankolhe/flask-task-app
- Owner: PawanKolhe
- Created: 2020-07-28T10:24:08.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-20T04:54:16.000Z (over 5 years ago)
- Last Synced: 2025-04-04T09:13:14.323Z (about 1 year ago)
- Topics: flask
- Language: Python
- Homepage: https://flaskapp-basic.herokuapp.com/
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Task app
## Requirements
- Python 3
## Environment Setup
> NOTE: Python 3 maybe installed as `python` instead of `python3` in your system. Same applies for `pip` / `pip3`. Try the other if one does not work.
1. Install `vitualenv` for isolated Python environment
```bash
pip3 install virtualenv
```
2. Create `vitualenv` named env
```bash
virtualenv env
```
3. Launch `virtualenv`
- **Windows**
```powershell
# Powershell
.\env\Scripts\activate.ps1
# CMD
.\env\Scripts\activate.bat
```
- **Linux**
```bash
source ./env/Scripts/activate
```
4. Install Dependencies
```bash
pip3 install -r requirements.txt
```
5. Start server
```
python3 app.py
```
6. Open `http://127.0.0.1:5000` in browser