From 95a08f102cd2bfe18ed06e6fe26fc1d27c8c0df0 Mon Sep 17 00:00:00 2001 From: WellBuilder Admin Date: Tue, 26 May 2026 16:13:34 +0000 Subject: [PATCH] Add .env.example --- .env.example | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..363ee02 --- /dev/null +++ b/.env.example @@ -0,0 +1,16 @@ +# Authorize.net +AUTHNET_API_LOGIN_ID= +AUTHNET_TRANSACTION_KEY= +AUTHNET_ENV=sandbox + +# Database (PostgreSQL) +DATABASE_URL=postgresql://user:password@host:5432/dbname + +# Shopify Storefront API (read-only — for catalog import during migration) +SHOPIFY_STOREFRONT_TOKEN= +SHOPIFY_STORE_DOMAIN=yourstore.myshopify.com + +# App +SESSION_SECRET=replace_with_long_random_string +PORT=5000 +NODE_ENV=development