Skip to content

Commit 00a4bd9

Browse files
ismoilovdevmlclaude
andcommitted
Update README with automated env generation
- Add instructions for scripts/generate-env.sh - Simplify deployment steps 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent df820bd commit 00a4bd9

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,20 @@ Modern, real-time dashboard for monitoring and managing GitLab CI/CD pipelines w
2323
git clone https://github.com/ismoilovdevml/gitlab-ci-dashboard.git
2424
cd gitlab-ci-dashboard
2525

26-
# 2. Setup environment variables
27-
cp .env.example .env
26+
# 2. Generate secure environment variables (auto-creates random passwords)
27+
bash scripts/generate-env.sh production
2828

29-
# 3. Review and edit .env file if needed
30-
nano .env
29+
# OR manually:
30+
# cp .env.example .env
31+
# nano .env # Edit with your values
3132

32-
# 6. Start all services (PostgreSQL + Redis + App)
33+
# 3. Start all services (PostgreSQL + Redis + App)
3334
docker-compose up -d
3435

36+
# 4. View admin credentials (save them!)
37+
# Username and password were shown after running generate-env.sh
38+
# Or view .env file: cat .env | grep ADMIN
39+
3540
# 7. View logs
3641
docker-compose logs -f app
3742
```

0 commit comments

Comments
 (0)