Storx reads all runtime configuration from aDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/nayalsaurav/Storx/llms.txt
Use this file to discover all available pages before exploring further.
.env.local file in the project root. This file is never committed to version control — it must be created manually on each machine or deployment environment before running the application.
Template
Create a.env.local file at the root of your project and populate every value before starting the development server or deploying:
.env.local
Variable Reference
The full Neon PostgreSQL connection string used by both the Drizzle ORM client
and the migration runner. Obtain this from your Neon project dashboard.Example:
postgresql://user:password@ep-cool-name-123456.us-east-2.aws.neon.tech/neondb?sslmode=requireThe Clerk publishable key. Prefixed with
NEXT_PUBLIC_ so it is embedded in
the client-side bundle. Safe to expose to the browser. Obtain this from your
Clerk application dashboard.Example: pk_test_...The Clerk secret key used exclusively on the server to verify session tokens
and call the Clerk backend API. Never exposed to the browser.Example:
sk_test_...The path Clerk redirects unauthenticated users to when sign-in is required.
Must match the route where the
SignInForm component is rendered.Default: /signinThe path Clerk redirects users to when they need to create a new account.
Must match the route where the
SignUpForm component is rendered.Default: /signupThe ImageKit public key. Prefixed with
NEXT_PUBLIC_ so it is available in
the browser for client-side upload authentication flows.Example: public_...The ImageKit private key used on the server to generate authentication
parameters for secure uploads. Never exposed to the browser.Example:
private_...The base URL endpoint for your ImageKit account. All file URLs delivered by
ImageKit are constructed relative to this endpoint.Example:
https://ik.imagekit.io/your_imagekit_idFor detailed setup instructions for each service, see the dedicated
configuration guides: