Skip to content

Commit f48a560

Browse files
Remove tracked env template and tighten ignores
1 parent b330daa commit f48a560

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ __pycache__/
55
.venv/
66
venv/
77
.env
8+
.env.*
9+
**/.env
10+
**/.env.*
811
.pytest_cache/
912
.ruff_cache/
1013
.mypy_cache/

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ WorldModel Gym is a production-ready benchmark platform for long-horizon plannin
1919
## Quickstart
2020

2121
```bash
22-
cp .env.example .env
2322
make setup
2423
make demo
2524
```
2625

26+
Local development uses built-in defaults. If you need overrides, export environment variables in your shell instead of committing env files to the repo.
27+
2728
`make demo` will:
2829

2930
- start the API + web stack with Docker when available

docs/DEPLOYMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Deployment
22

3-
Before deploying, copy `.env.example` and replace the default upload token.
3+
Before deploying, set environment variables directly in Render/Vercel or in your shell. Do not commit env files to the repository.
44

55
## Recommended Production Combo: Render (API) + Vercel (Web)
66

0 commit comments

Comments
 (0)