Compare commits
No commits in common. "8f96736328cc45420f1e30b82fef8744ff17de06" and "3f83ee6dc158a533e51fcfc19bf4d1492888c959" have entirely different histories.
8f96736328
...
3f83ee6dc1
3 changed files with 7 additions and 18 deletions
19
.env
19
.env
|
|
@ -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
3
.gitignore
vendored
|
|
@ -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
3
netlify.toml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[build]
|
||||||
|
command = "bunx prisma migrate deploy && bun run build"
|
||||||
|
publish = "build"
|
||||||
Loading…
Add table
Reference in a new issue