-
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.
Move api key to env. Use current host for apollo client
Store the api key in .env files outside of the git repo. Delete the old key Connect to the graphql endpoint using the current browser host Change the logo to be squared. Still not being displayed
- Loading branch information
Showing
8 changed files
with
249 additions
and
24 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ piclimbing | |
TODO | ||
piclimbing.exe | ||
piclimbing.arm6 | ||
piclimbing.osx |
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 |
---|---|---|
|
@@ -69,4 +69,7 @@ yarn-error.log | |
.yarn-integrity | ||
|
||
# Build files | ||
lib/ | ||
lib/ | ||
|
||
.env.development | ||
.env.production |
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,7 +1,7 @@ | ||
all: clean build | ||
|
||
clean: | ||
gatsby build | ||
gatsby clean | ||
|
||
build: | ||
gatsby build | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
const AppName = 'piclimbing'; | ||
const Server = '127.0.0.1:8080'; | ||
const HTTPServer = `http://${Server}/query`; | ||
const WSServer = `ws://${Server}/query`; | ||
|
||
const GoogleClientId = | ||
'275924066084-dgk36mi6e5t4c8oilvt2nmjmq0tquaq8.apps.googleusercontent.com'; | ||
const GoogleApiKey = 'AIzaSyCl0nG267IOgnfT-sWUj0cDb4FEj8Kt9Ss'; | ||
|
||
export { AppName, HTTPServer, WSServer, GoogleClientId, GoogleApiKey }; | ||
export { AppName }; |