Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.63 KB

File metadata and controls

33 lines (23 loc) · 1.63 KB

IntentOS setup overview

IntentOS is a FastAPI backend plus a static frontend. Source code lives under src/:

Path Role
src/backend/ Python app (main.py), API routes, Gemini/actions/email integration
src/frontend/ Static assets served at / and /static/

Configuration uses environment variables (see .env.template at the repository root). For production on Google Cloud Run, set the same variables in the Cloud Run service.

Prerequisites (all environments)

  • Python 3.11+ for local runs
  • Google Cloud SDK (gcloud) for Cloud Run deployment
  • APIs and credentials used by the app:

Security

  • Do not commit real API keys, Gmail passwords, or .env files. The repository includes .env.template only.
  • If keys were ever shared in chat, issue logs, or screenshots, rotate them in Google Cloud / AI Studio / Google Account and update Cloud Run env vars.

Detailed guides

Document Contents
LOCAL.md Virtualenv, install dependencies, run the server locally, optional checks
CLOUDRUN.md Enable GCP APIs, IAM, create keys, build with the root Dockerfile, deploy to Cloud Run

Start with LOCAL.md for development and CLOUDRUN.md when you are ready to deploy.