https://github.com/blankeos/sanic-sqlite
Sanic Sqlite
https://github.com/blankeos/sanic-sqlite
Last synced: 8 months ago
JSON representation
Sanic Sqlite
- Host: GitHub
- URL: https://github.com/blankeos/sanic-sqlite
- Owner: Blankeos
- Created: 2024-04-18T15:18:53.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-18T15:24:04.000Z (about 2 years ago)
- Last Synced: 2025-02-13T08:41:35.733Z (over 1 year ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```