File tree Expand file tree Collapse file tree 3 files changed +19
-22
lines changed Expand file tree Collapse file tree 3 files changed +19
-22
lines changed Original file line number Diff line number Diff line change
1
+ import { allEnvironments } from "./environments-all" ;
2
+
1
3
export const environment = {
2
4
siteUrl : 'http://localhost:4200' ,
3
5
apiUrl : 'http://localhost:5036/api/v1' ,
4
6
nullApiUrl : 'http://localhost:5219/null/v1' ,
5
7
twitchClientId : 'cvipqhi9y6ri8yhv0w8ryxokxh0ebd' ,
6
- twitchScopes : [
7
- // Default get email only! Used for login instead of Gmail.
8
- [
9
- 'user:read:email'
10
- ] ,
11
- // "Twitch Bot" permissions.
12
- [
13
- 'user:read:email' ,
14
- 'moderator:read:chatters'
15
- ] ,
16
- ]
8
+ ...allEnvironments
17
9
} ;
Original file line number Diff line number Diff line change
1
+ import { allEnvironments } from "./environments-all"
2
+
1
3
export const environment = {
2
4
siteUrl : 'https://nullinside.com' ,
3
5
apiUrl : 'https://nullinside.com/api/v1' ,
4
6
nullApiUrl : 'https://nullinside.com/null/v1' ,
5
7
twitchClientId : 'gi1eu8xu9tl6vkjqz4tjqkdzfmcq5h' ,
6
- twitchScopes : [
7
- // Default get email only! Used for login instead of Gmail.
8
- [
9
- 'user:read:email'
10
- ] ,
11
- // "Twitch Bot" permissions.
12
- [
13
- 'user:read:email' ,
14
- 'moderator:read:chatters'
15
- ] ,
16
- ]
8
+ ...allEnvironments
17
9
} ;
Original file line number Diff line number Diff line change
1
+ export const allEnvironments = {
2
+ twitchScopes : [
3
+ // Default get email only! Used for login instead of Gmail.
4
+ [
5
+ 'user:read:email'
6
+ ] ,
7
+ // "Twitch Bot" permissions.
8
+ [
9
+ 'user:read:email' ,
10
+ 'moderator:read:chatters'
11
+ ]
12
+ ]
13
+ }
You can’t perform that action at this time.
0 commit comments