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
23 changes: 23 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
NODE_ENV="development"

FRONTEND_URL="http://localhost:3000"

NEXT_PUBLIC_API_URL="http://localhost:3001"

DATABASE_URL="postgresql://postgres:password@localhost:5432/acme_content_workflow?schema=public"

JWT_SECRET="your-super-secret-jwt-key-change-this-in-production-and-make-it-long-and-random"
JWT_EXPIRES_IN="7d"

OPENAI_API_KEY="sk-your-openai-api-key-here"

API_PORT=3001
API_PREFIX="/api/v1"

FRONTEND_PORT=3000

# PostgreSQL Docker Configuration
POSTGRES_DB=acme_content_workflow
POSTGRES_USER=postgres
POSTGRES_PASSWORD=password
POSTGRES_PORT=5432
10 changes: 5 additions & 5 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ Please describe the tests that you ran to verify your changes. Provide instructi

## Checklist

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ]code follows the style guidelines of this project
- [ ] I have performed a self-review ofcode
- [ ] I have commentedcode, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ]changes generate no new warnings
- [ ] Any dependent changes have been merged and published in downstream modules
- [ ] I have checked my code and corrected any misspellings
- [ ] I have checkedcode and corrected any misspellings
49 changes: 49 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# Build outputs
dist/
build/

# Logs
logs
*.log

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

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

# Temporary files
*.tmp
*.temp

# Coverage directory used by tools like istanbul
coverage/

# Test results
test-results/
junit.xml

# Prisma
migrations/dev.db*
Loading