cleaning up npm packages

This commit is contained in:
C-West8
2026-07-22 15:54:59 -05:00
parent 4e6ed044a9
commit a0e6a32b5f
8 changed files with 338 additions and 216 deletions

View File

@@ -1,9 +1,18 @@
# Copy this file to ".env" and fill in real values. Never commit the real .env.
# --- Database ---
# When running the app OUTSIDE Docker (npm run dev), point this at your Postgres.
# When running via docker-compose, this is set for you in docker-compose.yml.
DATABASE_URL=postgres://sde:sde_password@localhost:5432/sde_toolkit
# Each part of the Postgres connection is its own setting, so the username and
# password are easy to change. When running via docker-compose these are set for
# you there; set them here when running the app directly (npm run dev).
DB_HOST=localhost
DB_PORT=5432
DB_USER=sde
DB_PASSWORD=sde_password
DB_NAME=sde_toolkit
# Advanced (optional): a full connection string. If set, it overrides the DB_*
# settings above. Most people should leave this blank and use the DB_* fields.
# DATABASE_URL=postgres://sde:sde_password@localhost:5432/sde_toolkit
# --- Server ---
PORT=3000