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

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.

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.