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
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Backend Environment Variables
# Copy this file to apps/backend/.env and update with your values

DATABASE_URL="postgresql://postgres:postgres@localhost:5432/orders_db?schema=public"
PORT=3000
NODE_ENV=development
97 changes: 97 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
# Dependencies
node_modules/
.pnp
.pnp.js
pnpm-lock.yaml

# Testing
coverage/
*.log

# Production
dist/
build/

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

# Keep .env.example files
!.env.example

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

# OS
.DS_Store
Thumbs.db

# Database
*.db
*.sqlite
*.sqlite3

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
errors.txt

# Cache
.cache/
.parcel-cache/
.turbo/
.next/
.nuxt/

# Build artifacts
dist/
out/
tmp/
temp/

# TypeScript
*.tsbuildinfo

# Prisma
prisma/migrations/

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env.test

# Stores VSCode versions used for testing VSCode extensions
.vscode-test
ROADMAP.md

# Copilot
.github/copilot-instructions.md
postman/VALIDATION-REPORT.md
TEST-AUTO-SEED.md
27 changes: 27 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Dependencies
node_modules
pnpm-lock.yaml

# Build outputs
dist
build
.next
out

# Environment files
.env*
!.env.example

# Database
prisma/migrations

# Logs
*.log

# Cache
.cache
.turbo
.vite

# Generated files
*.tsbuildinfo
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"arrowParens": "always"
}
Loading