-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
19 lines (16 loc) · 900 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// IAM
const IAM_BASE_URL = "http://localhost:8080/v1";
const IAM_LOGIN_URL = IAM_BASE_URL + "/users/${username}/login";
const IAM_VERIFY_URL = IAM_BASE_URL + "/users/${username}/login";
const IAM_CREATE_ACCOUNT_URL = IAM_BASE_URL + "/users";
const IAM_GET_USER_DATA_URL = IAM_BASE_URL + "/users/self";
const IAM_UPDATE_USER_DATA_URL = IAM_BASE_URL + "/users/self";
// Payments Service
const PAYMENT_BASE_URL = "http://localhost:4242";
const PAYMENT_CREATE_SESSION_URL = PAYMENT_BASE_URL + "/create-session";
// Stripe
const STRIPE_PUBLIC_KEY = '';
// Website
const SUPPORT_EMAIL = "support@netsoc.ie";
const MAIN_WEBSITE_URL = "http://localhost:4000/services/";
const BLURB = "We provide free web hosting and file storage on our servers, tech talks and tutorials for all skill levels. Learn how to build your own webpage and host it on our servers! Find out more by clicking on our logo above!";