From 7a7f95effb5b80d1565c82e8e0644f3099e06b16 Mon Sep 17 00:00:00 2001 From: THORSTEN SCHMINKEL Date: Mon, 12 Feb 2024 14:38:51 +0100 Subject: [PATCH] Add production environment variables and update .gitignore Added new environment variables for the production environment in .env file and updated the .gitignore file to recognize the .env file. The new environment variables include Stripe's public key, success URL, and cancel URL. --- .env | 5 +++++ .gitignore | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .env diff --git a/.env b/.env new file mode 100644 index 0000000..01280fd --- /dev/null +++ b/.env @@ -0,0 +1,5 @@ +VITE_BASE_PATH=/ +VITE_STRIPE_PUBLIC_KEY=pk_test_51KVz3lHxQ9v68qpG3VOVHvXoZ5gAMuGxDrJ8ICfuc9IkKrL0OE2p5iFYAL9MWfqKSXJ8IdCYcVLBTflfIQNDHXVT005mUdCINI +VITE_STRIPE_SUCCESS_URL=http://localhost:4173/ +VITE_STRIPE_CANCEL_URL=http://localhost:4173/ + diff --git a/.gitignore b/.gitignore index a1c30b8..d18f7a6 100644 --- a/.gitignore +++ b/.gitignore @@ -24,4 +24,3 @@ dist-ssr *.sw? .env*.local -.env