https://github.com/shawnduong/flask-template
Boilerplate code for my Flask projects.
https://github.com/shawnduong/flask-template
boilerplate flask python template
Last synced: about 2 months ago
JSON representation
Boilerplate code for my Flask projects.
- Host: GitHub
- URL: https://github.com/shawnduong/flask-template
- Owner: shawnduong
- License: mit
- Created: 2023-06-18T22:11:25.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-24T04:53:47.000Z (over 2 years ago)
- Last Synced: 2025-03-03T08:45:04.700Z (over 1 year ago)
- Topics: boilerplate, flask, python, template
- Language: Python
- 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
Boilerplate code for my Flask projects.
## Usage
1. Clone or fork the repository.
```sh
$ git clone git@github.com:shawnduong/flask-template.git
```
2. Copy `src` into wherever your project is.
```sh
$ cd flask-template/
$ cp -r src/ /path/to/your/project/
$ cd /path/to/your/project/src/
```
3. Install dependencies using whatever your package manager is.
- Python 3.x
- `bcrypt`
- `flask`
- `flask_login`
- `flask_sqlalchemy`
4. Run `main.py`.
```sh
$ ./main.py
```
See `main.py --help` for more flags.