Skip to content
Open
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
19 changes: 19 additions & 0 deletions .env.example
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reviewed: backend-only MVP auth per AUTHENTICATION_FLOWS.md.
Session-based auth, email/password primary, OAuth scaffold only.
Looks good to merge.

Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Database (PostgreSQL)
DATABASE_URL="postgresql://user:password@localhost:5432/cloudpeople"

# Node environment
NODE_ENV="development"

# Application URL (for email links in production)
APP_URL="http://localhost:3000"

# OAuth Providers (optional - not enabled by default)
# Uncomment and configure to enable OAuth

# Google OAuth
# GOOGLE_CLIENT_ID=""
# GOOGLE_CLIENT_SECRET=""

# GitHub OAuth
# GITHUB_CLIENT_ID=""
# GITHUB_CLIENT_SECRET=""
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Dependencies
node_modules/

# Next.js
.next/
out/

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

# Build
*.tsbuildinfo

# IDE
.idea/
.vscode/

# OS
.DS_Store

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