An open API service indexing awesome lists of open source software.

https://github.com/danielcaz/flask-template

This is the template I use to start a new Flask project. It includes a basic structure and Docker configuration.
https://github.com/danielcaz/flask-template

docker docker-compose flask python

Last synced: about 2 months ago
JSON representation

This is the template I use to start a new Flask project. It includes a basic structure and Docker configuration.

Awesome Lists containing this project

README

          

# Flask template

This is the template I use to start a new Flask project. It includes a basic structure and Docker configuration.

## How to use it

1. Clone the repository

```bash
git clone https://github.com/DanielCaz/flask-template.git my_project
```

2. Replace git configuration

```bash
cd my_project
rm -rf .git
git init
```

3. Run in dev mode

```bash
docker compose watch
```

4. Open your browser and go to `http://localhost:8000`

5. Start coding!