forked from jamesp/sasa-membership
1a0b4dc25d
- Add configurable profile questions with conditional visibility, admin-only fields, user answers, and seeded onboarding/volunteer questions
- Add admin UI for managing profile questions and member profile answers
- Add volunteer level/profile data support across backend schemas, models, API, and migration
- Update dashboard/profile UI, super admin menu, membership service types, and related styling
- Add privacy policy, terms of service, cookie notice, and footer links
- Add frontend Vitest coverage for profile question logic
- Add backend pytest coverage for profile answer normalization and validation
- Update restart.sh to build, run frontend/backend unit tests, and restart only after tests pass
- Refresh README, quickstart, project structure, instructions, and Square docs to match current app features
- Protect feature flag reload behind super-admin access
- Restrict admin-triggered password resets so admins can only reset member accounts
- Replace email template HTML preview rendering with escaped text preview
- Update docs for feature flag reload access, password reset scope, and email template preview safety
-- test user questions are also made by AI and not very useful. but i didn't know what to put there so its good enough for a test
-- all tests pass on my vm and seems to run fine
34 lines
538 B
Plaintext
34 lines
538 B
Plaintext
# FastAPI and web server
|
|
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
pydantic==2.10.3
|
|
pydantic-settings==2.6.1
|
|
python-multipart==0.0.6
|
|
|
|
# Database
|
|
sqlalchemy==2.0.49
|
|
pymysql==1.1.0
|
|
cryptography==41.0.7
|
|
alembic==1.13.0
|
|
|
|
# Authentication and Security
|
|
python-jose[cryptography]==3.3.0
|
|
passlib[bcrypt]==1.7.4
|
|
python-dotenv==1.0.0
|
|
bcrypt==4.1.1
|
|
|
|
# Payment Integration
|
|
squareup==43.2.0.20251016
|
|
|
|
# Email Service
|
|
httpx==0.25.2
|
|
|
|
# Other utilities
|
|
email-validator==2.1.0
|
|
aiofiles==23.2.1
|
|
Jinja2==3.1.2
|
|
python-dateutil==2.8.2
|
|
|
|
# Tests
|
|
pytest==8.3.4
|