Compare commits

...

4 commits

Author SHA1 Message Date
Benjamin Palko
8f96736328 storybook ignore
All checks were successful
Deployment / Setup (push) Successful in 1m48s
Deployment / Deploy Storybook (push) Successful in 7m43s
2025-03-30 20:46:52 -04:00
Benjamin Palko
735c6c64eb remove since its only ever set to 'production' 2025-03-30 20:46:44 -04:00
Benjamin Palko
64d1b58b27 remove netlify config 2025-03-30 20:46:28 -04:00
Benjamin Palko
f785b33068 reformat env file 2025-03-30 18:16:31 -04:00
3 changed files with 18 additions and 7 deletions

19
.env
View file

@ -1,14 +1,25 @@
NODE_ENV= NPM_TOKEN=
# SECRETS ##########################
# APP VARIABLES #
##########################
APP_NAME=hestia
##########################
# SECRETS #
##########################
SECRETS_PASSWORD=secret_do_not_commit_or_change_this_create_.env.local_instead SECRETS_PASSWORD=secret_do_not_commit_or_change_this_create_.env.local_instead
SECRETS_SALT=secret_do_not_commit_or_change_this_create_.env.local_instead SECRETS_SALT=secret_do_not_commit_or_change_this_create_.env.local_instead
SECRETS_IV_POSITION=secret_do_not_commit_or_change_this_create_.env.local_instead SECRETS_IV_POSITION=secret_do_not_commit_or_change_this_create_.env.local_instead
# PRISMA ##########################
# DATABASE #
##########################
DATABASE_URL="postgres://hestia:test123@localhost:5432/hestia" DATABASE_URL="postgres://hestia:test123@localhost:5432/hestia"
DIRECT_URL="postgres://hestia:test123@localhost:5432/hestia" DIRECT_URL="postgres://hestia:test123@localhost:5432/hestia"
# CLERK ##########################
# AUTHENTICATION #
##########################
PUBLIC_CLERK_PUBLISHABLE_KEY=secret_do_not_commit_or_change_this_create_.env.local_instead PUBLIC_CLERK_PUBLISHABLE_KEY=secret_do_not_commit_or_change_this_create_.env.local_instead
CLERK_SECRET_KEY=secret_do_not_commit_or_change_this_create_.env.local_instead CLERK_SECRET_KEY=secret_do_not_commit_or_change_this_create_.env.local_instead

3
.gitignore vendored
View file

@ -14,6 +14,9 @@ node_modules
Thumbs.db Thumbs.db
.idea .idea
# Storybook
storybook-static
# Vite # Vite
vite.config.js.timestamp-* vite.config.js.timestamp-*
vite.config.ts.timestamp-* vite.config.ts.timestamp-*

View file

@ -1,3 +0,0 @@
[build]
command = "bunx prisma migrate deploy && bun run build"
publish = "build"