https://github.com/kenmwaura1/flask_starter_app
simple flask starter app utilizing docker
https://github.com/kenmwaura1/flask_starter_app
Last synced: about 2 months ago
JSON representation
simple flask starter app utilizing docker
- Host: GitHub
- URL: https://github.com/kenmwaura1/flask_starter_app
- Owner: KenMwaura1
- License: mit
- Created: 2021-09-15T23:14:59.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-15T23:45:26.000Z (almost 4 years ago)
- Last Synced: 2025-08-07T21:07:43.462Z (2 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flask_starter_app
Simple flask starter app utilizing docker to showcase seasonal anime using [jikanpy](https://github.com/abhinavk99/jikanpy)
(myanimelist unofficial api).## Article
Link to write-up [here](https://dev.to/ken_mwaura1/getting-started-with-flask-and-docker-3ie8)## Docker Quickstart
**Using Docker is recommended, as it guarantees the application is run using compatible versions of Python and Node**.Inside the app there a Dockerfile to help you get started.
To build the development version of the app
```bash
docker build -t flask-starter-app .
```To run the app
```bash
docker run --name=flask-app -p 5001:5000 -t -i flask-starter-app
```
If everything went well, the app should be running on [localhost:5001](http://localhost:5001)