forked from carrawao/SWE_Finanzen
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request carrawao#80 from carrawao/feature/activities
refactor: put Backend apiKeys and BotBackendFetchURL into .env
- Loading branch information
Showing
56 changed files
with
637 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#API Keys | ||
APIKEY1 = ZSQ57OXG4YKUA0B8 #API Key Hakan; | ||
APIKEY2 = MB6DE4CNFFYGP4M7 #API Key Steffen; | ||
APIKEY3 = NOGQ7D1A1RHDGMU4 #API Key Cedrik | ||
APIKEY4 = ZSQ57OXG4YKUA0B8 #API Key Hakan; #RESERVIERT FÜR MONATLICH | ||
APIKEY5 = MB6DE4CNFFYGP4M7 #API Key Steffen; | ||
APIKEY6 = NOGQ7D1A1RHDGMU4 #API Key Cedrik; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
REACT_APP_BASEURL = http://localhost:3001 | ||
REACT_APP_BASEURL = http://localhost:3001 | ||
REACT_APP_BOTBACKENDURL = http://benchmarket.germanywestcentral.cloudapp.azure.com:1880 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
REACT_APP_BASEURL = http://benchmarket.germanywestcentral.cloudapp.azure.com:3001 | ||
REACT_APP_BASEURL = http://benchmarket.germanywestcentral.cloudapp.azure.com:3001 | ||
REACT_APP_BOTBACKENDURL = http://benchmarket.germanywestcentral.cloudapp.azure.com:1880 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
const Colors = { | ||
BROWN: '#493f35', | ||
LIGHTBROWN: '#eacfb4', | ||
TEXTBROWN: '#30302f', | ||
GREY: '#f3f4f6', | ||
DARKGREY: '#bdbab7', | ||
GREEN: '#4eb96f', | ||
DARKGREEN: '#068930', | ||
|
||
|
||
DARKORANGE: '#e47e25', | ||
DARKERDARKORANGE: '#c96208', | ||
COLORPALETTE: [ | ||
'#e57e24ff', //cadmium-orange | ||
'#eb8e1fff', //carrot-orange | ||
'#f19b1fff', //orange-peel | ||
'#b69994ff', //tuscany | ||
'#3a97d2ff', //carolina-blue | ||
'#3d9bcaff', //carolina-blue-2 | ||
'#4eb96fff', //medium-sea-green | ||
'#c1be49ff', // olive-green | ||
'#efc317ff', //jonquil | ||
'#ecb81aff', //orange-yellow | ||
] | ||
} | ||
|
||
export default Colors; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.