ST
stevenernst131/smart-notes
Smart Notes — AI-Powered Notes App
A template app ready to deploy on Embr. FastAPI backend serves a plain HTML/JS frontend on a single port — no frontend build step needed.
Deploy to Embr
This repo includes a build.yaml that tells Embr how to build and run the app:
version: 1
platform: python
platformVersion: "3.14"
run:
port: 8080Connect this repo in the Embr Portal, and Embr will install dependencies from requirements.txt, then start the server automatically.
Run Locally
pip install -r requirements.txt
gunicorn --bind 0.0.0.0:8008 --reload application:appFeatures
- CRUD notes — create, edit, delete
- AI actions — summarize, extract action items, sentiment analysis (mock by default)
- Optional AI — set
AZURE_OPENAI_ENDPOINT,AZURE_OPENAI_API_KEY, andAZURE_OPENAI_DEPLOYMENTenv vars, then uncomment the real implementation inbackend/ai_service.py - Optional DB — in-memory storage by default; swap
backend/store.pyfor SQLite/Postgres