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.
- Host: GitHub
- URL: https://github.com/danielcaz/flask-template
- Owner: DanielCaz
- License: mit
- Created: 2024-03-16T17:50:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-27T17:54:54.000Z (almost 2 years ago)
- Last Synced: 2024-07-27T19:12:42.167Z (almost 2 years ago)
- Topics: docker, docker-compose, flask, python
- Language: HTML
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!