https://github.com/nikhil25803/flask_docker
A Dockarizied flask application with CRUD features.
https://github.com/nikhil25803/flask_docker
docker flask python3
Last synced: about 2 months ago
JSON representation
A Dockarizied flask application with CRUD features.
- Host: GitHub
- URL: https://github.com/nikhil25803/flask_docker
- Owner: nikhil25803
- License: mit
- Created: 2023-02-13T20:46:06.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-13T22:13:48.000Z (over 3 years ago)
- Last Synced: 2025-04-04T15:35:50.776Z (about 1 year ago)
- Topics: docker, flask, python3
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Flask Todo (Docker)
A Dockarizied flask application with CRUD features.
## Tech stack
  
## Project Setup
+ Clone the repository
```bash
git clone https://github.com/nikhil25803/flask_docker.git
```
+ Create and activate a virtual environment
```bash
python -m venv env
```
```bash
env\scripts\activate
```
+ Install the dependencies
```
pip install -r requirements.txt
```
## Run the program
```bash
python main.py
```
Or start a flask server
```bash
flask --app main --debug run
```
Running one of these command will create a `task.db` databse in the root directory to store data.
## Docker Image