Backend for sqwak-app. Provides API access for:
- create and delete users
- create, edit, and delete apps
- add classes to apps
- train ML models
- publish models to a public endpoint
- predict using those models via API call
-
Start a postgres server locally
-
Create a
.env
with the following keys:
SQLALCHEMY_DATABASE_URI=<postgres_uri>
-
Install ffmpeg, if you're on a mac, run
brew install ffmpeg
-
Install dependencies and start the app:
pip install -r requirements.txt
make dev