Initial commit: OnDeck project

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
lorentz 2026-02-18 13:20:52 +00:00
commit b036a93da2
139 changed files with 33198 additions and 0 deletions

16
dev/.postgres Normal file
View file

@ -0,0 +1,16 @@
# PostgreSQL Connection Details for OnDeck Database
# Connection String
DATABASE_URL=postgresql://ondeck_user:ondeck_password_2026!@localhost:5432/ondeck
# Individual Connection Parameters
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=ondeck
POSTGRES_USER=ondeck_user
POSTGRES_PASSWORD=ondeck_password_2026!
# Alternative Formats
# SQLAlchemy: postgresql+psycopg2://ondeck_user:ondeck_password_2026!@localhost:5432/ondeck
# JDBC: jdbc:postgresql://localhost:5432/ondeck?user=ondeck_user&password=ondeck_password_2026!
# Node.js: postgres://ondeck_user:ondeck_password_2026!@localhost:5432/ondeck