Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
16 changes: 16 additions & 0 deletions apps/server/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Environment Variables for ObjectUI Server

# Authentication Secret (REQUIRED in production)
# Must be at least 32 characters
AUTH_SECRET=dev-secret-please-change-in-production-min-32-chars

# Base URL for the application
# Leave empty to auto-detect from VERCEL_URL on Vercel
# Set explicitly for custom domains
# NEXT_PUBLIC_BASE_URL=https://your-domain.com

# Runtime Mode (automatically set during build)
# VITE_RUNTIME_MODE=server

# Server URL (automatically set during build)
# VITE_SERVER_URL=
33 changes: 33 additions & 0 deletions apps/server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Dependencies
node_modules/
.pnpm-store/

# Build outputs
dist/
api/_handler.js
api/_handler.js.map
public/

# Environment
.env
.env.local
.env.*.local

# Logs
*.log
npm-debug.log*
pnpm-debug.log*

# OS
.DS_Store
Thumbs.db

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Vercel
.vercel
29 changes: 29 additions & 0 deletions apps/server/.vercelignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Vercel build artifacts
node_modules/
.pnpm-store/
dist/

# Test files
*.test.ts
*.spec.ts
__tests__/
test/

# Source files (only need compiled output)
*.ts
!api/**/*.js
!scripts/**/*.mjs

# Config files
tsconfig.json
vitest.config.ts
postcss.config.js
tailwind.config.js

# Documentation
*.md
!README.md

# Git
.git/
.gitignore
Loading
Loading