Commit46a3b26
fix: DB connection string with inline credentials
1 file changed+3−346a3b26f035290ce1be83afe4759f387a4174648
1 changed file+3−3
ModifiedDEPLOY.md+3−3View fileUnifiedSplit
@@ -49,7 +49,7 @@ Since Crontech handles deployment, routing, and SSL:
4949ssh root@your-server-ip
5050
5151# 2. Set your database URL
52export DATABASE_URL="postgresql://user:pass@host/gluecron?sslmode=require"
52export DATABASE_URL="postgresql://host/gluecron?sslmode=require"
5353
5454# 3. Run the deploy script
5555curl -fsSL https://raw.githubusercontent.com/ccantynz-alt/Gluecron.com/claude/ship-fixes-and-tests-Jvz1c/scripts/deploy.sh | bash
@@ -82,7 +82,7 @@ cd /opt/gluecron
8282
8383# Create .env
8484cat > .env << EOF
85DATABASE_URL=postgresql://user:pass@host/gluecron?sslmode=require
85DATABASE_URL=postgresql://host/gluecron?sslmode=require
8686GIT_REPOS_PATH=/data/repos
8787PORT=3000
8888NODE_ENV=production
@@ -172,4 +172,4 @@ After deploy, verify:
172172- [ ] `git clone http://gluecron.com/youruser/yourrepo.git` works
173173- [ ] Push code and see it in the web UI
174174- [ ] Health dashboard shows at /youruser/yourrepo/health
175- [ ] HTTPS works (if nginx + certbot set up)
175- [ ] HTTPS works (if nginx + certbot set up)
\ No newline at end of file
176176