30 lines
559 B
Plaintext
30 lines
559 B
Plaintext
# Form Builder Backend
|
|
|
|
Dynamic form builder with PostgreSQL JSONB support.
|
|
|
|
## Features
|
|
|
|
- ✅ Dynamic form creation with custom fields
|
|
- ✅ JSONB storage for flexible submissions
|
|
- ✅ Advanced analytics and reporting
|
|
- ✅ CSV/Excel export
|
|
- ✅ RESTful API with FastAPI
|
|
- ✅ Async database operations
|
|
- ✅ Full-text search in JSONB fields
|
|
|
|
## Quick Start
|
|
|
|
### Using Docker
|
|
|
|
```bash
|
|
# Copy environment file
|
|
cp .env.example .env
|
|
|
|
# Start services
|
|
make docker-up
|
|
|
|
# Initialize database
|
|
make init-db
|
|
|
|
# Seed test data (optional)
|
|
python scripts/seed_data.py |