Skip to content
Draft
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
12 changes: 12 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Local environment variables for Cloud Agents
# Copy this file to .env and fill in your actual values
#
# cp .env.example .env
#
# Cloud agents can read your .env file directly to access these variables.

# Example variables (replace with your actual values):
API_KEY=your-api-key-here
DATABASE_URL=postgres://user:password@localhost:5432/mydb
DEBUG=true
NODE_ENV=development
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Environment variables
.env
.env.local
.env.*.local

# Don't commit sensitive configuration
*.pem
*.key