Add .gitignore; remove venv/node_modules/IDE + secrets from git
This commit is contained in:
17
.gitignore
vendored
Normal file
17
.gitignore
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
# OS / IDE
|
||||
.idea/
|
||||
.DS_Store
|
||||
|
||||
# Python
|
||||
backend/.venv/
|
||||
backend/__pycache__/
|
||||
backend/.pytest_cache/
|
||||
backend/.env
|
||||
|
||||
# Node
|
||||
frontend/node_modules/
|
||||
frontend/.next/
|
||||
frontend/.env.local
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
@@ -1,2 +0,0 @@
|
||||
DATABASE_URL=postgresql+psycopg2://postgres:netbox@127.0.0.1:5432/openclaw_agency
|
||||
CORS_ORIGINS=http://localhost:3000
|
||||
2
backend/.env.example
Normal file
2
backend/.env.example
Normal file
@@ -0,0 +1,2 @@
|
||||
DATABASE_URL=postgresql+psycopg2://postgres:CHANGE_ME@127.0.0.1:5432/openclaw_agency
|
||||
CORS_ORIGINS=http://localhost:3000
|
||||
Reference in New Issue
Block a user