diff --git a/.env b/.env index 3fcbd9e..5a40385 100644 --- a/.env +++ b/.env @@ -1,25 +1,14 @@ -NPM_TOKEN= +NODE_ENV= -########################## -# APP VARIABLES # -########################## -APP_NAME=hestia - -########################## -# SECRETS # -########################## +# SECRETS 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_IV_POSITION=secret_do_not_commit_or_change_this_create_.env.local_instead -########################## -# DATABASE # -########################## +# PRISMA DATABASE_URL="postgres://hestia:test123@localhost:5432/hestia" DIRECT_URL="postgres://hestia:test123@localhost:5432/hestia" -########################## -# AUTHENTICATION # -########################## +# CLERK 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 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 74b2b6a..66c56cc 100644 --- a/.gitignore +++ b/.gitignore @@ -14,9 +14,6 @@ node_modules Thumbs.db .idea -# Storybook -storybook-static - # Vite vite.config.js.timestamp-* vite.config.ts.timestamp-* diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..6874893 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,3 @@ +[build] +command = "bunx prisma migrate deploy && bun run build" +publish = "build"