Add README

This commit is contained in:
Johnny Gear 2026-01-30 14:41:12 -06:00
parent f321099af6
commit 3fea0a5a1b

29
README.md Normal file
View file

@ -0,0 +1,29 @@
# Gear Orders
## Running in dev
Run flask
```bash
$ pipenv run python flask/app.py
```
Run caddy
```bash
$ caddy run
```
Run vite
```bash
$ cd flask/vite
$ vite dev
```
## Helpful Commands
Create database migration
```bash
$ pipenv run pw_migrate create add_user_photo_url --auto --database 'sqlite:///db.sqlite3'
```
Migrate database
```bash
$ pipenv run pw_migrate migrate --database 'sqlite:///db.sqlite3'
```