Skip to content
Open

Develop #2288

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
b9fcb15
Add comprehensive instructions for database migrations, frontend deve…
tantranvn Mar 28, 2026
5838299
feat: Add RBAC with roles and user-role relationship, including API r…
tantranvn Mar 28, 2026
ebb4d9b
feat: add race management features including create, edit, and delete…
tantranvn Mar 28, 2026
1e9dec1
feat: enhance admin route authentication flow with login check and er…
tantranvn Apr 21, 2026
f76b0bc
feat: Add user profile management and race interaction endpoints
tantranvn Apr 21, 2026
8f39aeb
feat: Implement search and discovery features for races
tantranvn Apr 22, 2026
5bff7be
feat: Refactor enum type creation for race discovery models and strea…
tantranvn Apr 22, 2026
8a0ccf1
Refactor code structure for improved readability and maintainability
tantranvn May 10, 2026
1176b67
Merge branch 'master' into develop
tantranvn May 16, 2026
bee7c12
Implement feature X to enhance user experience and optimize performance
tantranvn May 16, 2026
264bc0f
Refactor code structure for improved readability and maintainability
tantranvn May 16, 2026
b1e372f
Refactor code structure for improved readability and maintainability
tantranvn May 16, 2026
6adc47f
Implement comprehensive SEO and AEO optimization across VNRunner
tantranvn May 16, 2026
8a45b9c
feat: add race detail and listing pages with language support
tantranvn May 16, 2026
8c78ae3
fix: update race links to include language parameters for better routing
tantranvn May 17, 2026
45d2421
Enhance About, Home, and Races pages with improved styling and layout
tantranvn May 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
27 changes: 18 additions & 9 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -13,33 +13,42 @@ FRONTEND_HOST=http://localhost:5173
# Environment: local, staging, production
ENVIRONMENT=local

PROJECT_NAME="Full Stack FastAPI Project"
STACK_NAME=full-stack-fastapi-project
PROJECT_NAME="VNRunner"
STACK_NAME=vn-runner

# Backend
BACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,https://localhost,https://localhost:5173,http://localhost.tiangolo.com"
SECRET_KEY=changethis
FIRST_SUPERUSER=admin@example.com
FIRST_SUPERUSER_PASSWORD=changethis
SECRET_KEY=vnrunner-secret-key
FIRST_SUPERUSER=admin@vnrunner.com
FIRST_SUPERUSER_PASSWORD=password

# Emails
SMTP_HOST=
SMTP_USER=
SMTP_PASSWORD=
EMAILS_FROM_EMAIL=info@example.com
EMAILS_FROM_EMAIL=info@vnrunner.com
SMTP_TLS=True
SMTP_SSL=False
SMTP_PORT=587

# Postgres
POSTGRES_SERVER=localhost
POSTGRES_PORT=5432
POSTGRES_DB=app
POSTGRES_USER=postgres
POSTGRES_PASSWORD=changethis
POSTGRES_DB=vnrunner
POSTGRES_USER=tantran
POSTGRES_PASSWORD=password

SENTRY_DSN=

# AI / Embeddings
ANTHROPIC_API_KEY=
OPENAI_API_KEY=
EMBEDDING_MODEL=text-embedding-3-small
EMBEDDING_DIMENSIONS=1536

# Redis
REDIS_URL=redis://localhost:6379

# Configure these with your own Docker registry images
DOCKER_IMAGE_BACKEND=backend
DOCKER_IMAGE_FRONTEND=frontend
Loading
Loading