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

https://github.com/blankeos/sanic-sqlite

Sanic Sqlite
https://github.com/blankeos/sanic-sqlite

Last synced: 8 months ago
JSON representation

Sanic Sqlite

Awesome Lists containing this project

README

          

## Install requirements

- Python 3.12.2
- Git

## Getting Started

1. Clone

```sh
git clone https://github.com/Blankeos/sanic-sqlite.git
```

2. Create a virtual environment

```sh
python -m .venv venv
```

3. Install requirements

```sh
pip install -r requirements.txt
```

4. Run the app

```sh
# For running in production.
sanic main --host=0.0.0.0

# If you're developing
sanic main --host=0.0.0.0 --reload
```