-
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 #222 from UW-Macrostrat/typescript
Typescript
- Loading branch information
Showing
201 changed files
with
40,943 additions
and
12,404 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
node_modules | ||
credentials.js | ||
credentials.ts |
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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// A file mirroring this structure should be placed at /code/credentials.ts | ||
// in the Docker container. | ||
|
||
exports.mysql = { | ||
host: "localhost", | ||
user: "user", | ||
password: "password", | ||
database: "macrostrat", | ||
socketPath: "/tmp/mysql.sock", | ||
// socketPath: '/var/tmp/mariadb.sock' | ||
}; | ||
|
||
exports.pg = { | ||
host: "localhost", | ||
port: "5432", | ||
user: "postgres", | ||
password: "", | ||
}; | ||
|
||
exports.postgresDatabases = { | ||
burwell: "burwell", | ||
geomacro: "geomacro", | ||
}; | ||
|
||
// This is the default Redis port | ||
// NOTE: Redis is not configured at the moment | ||
exports.redis = { | ||
port: 6379, | ||
}; | ||
|
||
// Generate a hash by running: node -e "console.log(require('uuid/v4')())" | ||
exports.cacheRefreshKey = "put-hash-here"; |
Oops, something went wrong.