Skip to content

nirmash/simple-python-notes-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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: 8080

Connect 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:app

Open http://localhost:8008

Features

  • 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, and AZURE_OPENAI_DEPLOYMENT env vars, then uncomment the real implementation in backend/ai_service.py
  • Optional DB — in-memory storage by default; swap backend/store.py for SQLite/Postgres

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • HTML 56.2%
  • Python 43.8%