This commit is contained in:
Ginger Wong 2020-10-07 23:09:42 -07:00
parent 12487011d2
commit c7dc2a4030
3 changed files with 11 additions and 11 deletions

3
web/.env.development Normal file
View file

@ -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
View file

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

View file

@ -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) {
} catch (error) {
console.log(error)
}
return {};
}
// fetch error cases
// json.catch(error => {
// error.message; // 'An error has occurred: 404'
// });