Browse Source

blah

pull/1886/head
Ginger Wong 5 years ago
parent
commit
c7dc2a4030
  1. 3
      web/.env.development
  2. 1
      web/.gitignore
  3. 18
      web/pages/utils/apis.ts

3
web/.env.development

@ -0,0 +1,3 @@ @@ -0,0 +1,3 @@
NEXT_PUBLIC_ADMIN_USERNAME=admin
NEXT_PUBLIC_ADMIN_STREAMKEY=abc123
NEXT_PUBLIC_API_HOST=http://localhost:8080/

1
web/.gitignore vendored

@ -1 +1,2 @@ @@ -1 +1,2 @@
node_modules
.env*.local

18
web/pages/utils/apis.ts

@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
/* eslint-disable prefer-destructuring */
const ADMIN_USERNAME = process.env.ADMIN_USERNAME;
const ADMIN_STREAMKEY = process.env.ADMIN_STREAMKEY;
const NEXT_PUBLIC_API_HOST = process.env.NEXT_PUBLIC_API_HOST;
const IS_DEV = true;
const ADMIN_USERNAME = 'admin';
const ADMIN_STREAMKEY = 'abc123';
const API_LOCATION = 'http://localhost:8080/api/admin/';
const API_LOCATION = `${NEXT_PUBLIC_API_HOST}api/admin/`;
// Current inbound broadcaster info
export const BROADCASTER = `${API_LOCATION}broadcaster`;
// Disconnect inbound stream
export const DISCONNECT = `${API_LOCATION}disconnect`;
@ -56,9 +56,5 @@ export async function fetchData(url) { @@ -56,9 +56,5 @@ export async function fetchData(url) {
} catch (error) {
console.log(error)
}
return {};
}
// fetch error cases
// json.catch(error => {
// error.message; // 'An error has occurred: 404'
// });

Loading…
Cancel
Save