Skip to content

Commit 6db5ebe

Browse files
committed
chore: remove unused environment variables
1 parent 7eca0ff commit 6db5ebe

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

.env.template

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@ DRIVE_URL=https://drive.internxt.com
22
DRIVE_API_URL=https://drive.internxt.com/api
33
DRIVE_NEW_API_URL=https://api.internxt.com/drive
44
PAYMENTS_API_URL=https://api.internxt.com/payments
5-
PHOTOS_API_URL=https://photos.internxt.com/api
65
NETWORK_URL=https://api.internxt.com
76
APP_CRYPTO_SECRET=6KYQBP847D4ATSFA
87
APP_CRYPTO_SECRET2=8Q8VMUE3BJZV87GT
98
APP_MAGIC_IV=d139cb9a2cd17092e79e1861cf9d7023
10-
APP_MAGIC_SALT=38dce0391b49efba88dbc8c39ebf868f0267eb110bb0012ab27dc52a528d61b1d1ed9d76f400ff58e3240028442b1eab9bb84e111d9dadd997982dbde9dbd25e
11-
RUDDERSTACK_WRITE_KEY=
12-
RUDDERSTACK_DATAPLANE_URL=
9+
APP_MAGIC_SALT=38dce0391b49efba88dbc8c39ebf868f0267eb110bb0012ab27dc52a528d61b1d1ed9d76f400ff58e3240028442b1eab9bb84e111d9dadd997982dbde9dbd25e

.github/workflows/publish.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,11 @@ jobs:
2727
echo "DRIVE_API_URL=https://drive.internxt.com/api" >> .env
2828
echo "DRIVE_NEW_API_URL=https://api.internxt.com/drive" >> .env
2929
echo "PAYMENTS_API_URL=https://api.internxt.com/payments" >> .env
30-
echo "PHOTOS_API_URL=https://photos.internxt.com/api" >> .env
3130
echo "NETWORK_URL=https://api.internxt.com" >> .env
3231
echo "APP_CRYPTO_SECRET=6KYQBP847D4ATSFA" >> .env
3332
echo "APP_CRYPTO_SECRET2=8Q8VMUE3BJZV87GT" >> .env
3433
echo "APP_MAGIC_IV=d139cb9a2cd17092e79e1861cf9d7023" >> .env
3534
echo "APP_MAGIC_SALT=38dce0391b49efba88dbc8c39ebf868f0267eb110bb0012ab27dc52a528d61b1d1ed9d76f400ff58e3240028442b1eab9bb84e111d9dadd997982dbde9dbd25e" >> .env
36-
echo "RUDDERSTACK_WRITE_KEY=" >> .env
37-
echo "RUDDERSTACK_DATAPLANE_URL=" >> .env
3835
echo "NODE_ENV=production" >> .env
3936
4037
- run: yarn run build

src/types/config.types.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@ export interface ConfigKeys {
33
readonly DRIVE_API_URL: string;
44
readonly DRIVE_NEW_API_URL: string;
55
readonly PAYMENTS_API_URL: string;
6-
readonly PHOTOS_API_URL: string;
76
readonly APP_CRYPTO_SECRET: string;
87
readonly APP_CRYPTO_SECRET2: string;
98
readonly APP_MAGIC_IV: string;
109
readonly APP_MAGIC_SALT: string;
1110
readonly NETWORK_URL: string;
12-
readonly RUDDERSTACK_WRITE_KEY: string;
13-
readonly RUDDERSTACK_DATAPLANE_URL: string;
1411
}

0 commit comments

Comments
 (0)