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
17 changes: 16 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,25 @@ yarn-error.log*
frontend/dist/
frontend/.vite/

# Environment variables
# Environment variables and secrets
.env
.env.local
.env.*.local
.env.production
.env.development
.env.test
*.env
*_secrets.json
*_credentials.json
secrets/
credentials/
*.key
*.pem
*.p12
*.crt
*.cer
config/secrets.yml
config/credentials.yml

# IDE
.vscode/
Expand Down
2 changes: 1 addition & 1 deletion DEPLOYMENT_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Complete guide for deploying the PDDL RLHF system to Vercel (frontend) and Railw
- Click "Variables" tab
- Add variable:
- Name: `FIREWORKS_API_KEY`
- Value: `fw_3ZHFp8ZR5WeoadXcFcjEKY4z` (or your API key)
- Value: Your Fireworks AI API key (get from https://fireworks.ai/)

3. **Deployment Settings:**
- Railway will auto-detect Python
Expand Down
2 changes: 1 addition & 1 deletion QUICK_REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ npm install

### Backend
```bash
FIREWORKS_API_KEY=fw_3ZHFp8ZR5WeoadXcFcjEKY4z
FIREWORKS_API_KEY=your_fireworks_api_key_here
PORT=8000
```

Expand Down
Loading