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

https://github.com/appleboiy/webapp-flask

The basic blog app built in the Flask tutorial.
https://github.com/appleboiy/webapp-flask

Last synced: 2 months ago
JSON representation

The basic blog app built in the Flask tutorial.

Awesome Lists containing this project

README

        

## scripts

- init db

```shell
flask --app flaskr init-db
```

- make it installable

```bash
pip install -e .
```

- run app `with default config`

```shell
flask --app flaskr run --debug
```

- build

```shell
python -m build --wheel
```