Web application generated by BESSER.
This application was created using the BESSER Web Modeling Editor, a low-code open-source platform for building software.
├── frontend/ # React TypeScript frontend
├── backend/ # FastAPI Python backend
├── agent/ # BESSER agent (if included)
├── render.yaml # Render deployment config (one-click deploy!)
├── .env.production # Production environment variables
└── docker-compose.yml # Local development setup
Why Render?
- ✅ Free Tier - 750 hours/month for both frontend + backend
- ✅ One-Click Deploy - No manual configuration needed
- ✅ No Payment Info Required - Won't ask for credit card
- ✅ Auto SSL - Free HTTPS certificates
⚠️ Spins down after 15 min idle (cold start ~30s on first request)
Click the button above and Render will automatically:
- Deploy your FastAPI backend
- Deploy your React frontend
- Connect them together
- Give you live URLs
cd frontend
npm install
npm start
# Opens at http://localhost:3000cd backend
pip install -r requirements.txt
uvicorn main_api:app --reload
# API at http://localhost:8000docker-compose up
# Frontend: http://localhost:3000
# Backend: http://localhost:8000- Frontend: React with TypeScript, Create React App
- Backend: FastAPI (Python 3.9+)
- Agent: BESSER agent framework (optional)
Learn more about BESSER: