Compare commits

..

No commits in common. "8f96736328cc45420f1e30b82fef8744ff17de06" and "3f83ee6dc158a533e51fcfc19bf4d1492888c959" have entirely different histories.

3 changed files with 7 additions and 18 deletions

19
.env
View file

@ -1,25 +1,14 @@
NPM_TOKEN= NODE_ENV=
########################## # 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,9 +14,6 @@ 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-*

3
netlify.toml Normal file
View file

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