diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-05-27 17:26:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-27 17:26:34 -0500 |
commit | 99508233778e29d41248cd233b2e58a92f4020b8 (patch) | |
tree | b0defcb0f839daed40c72c11841a0fb3029d25ec /src/index.ts | |
parent | 6b32badf45dfd2961cb42240f15c2a91a45e99c4 (diff) | |
download | skyblock-api-99508233778e29d41248cd233b2e58a92f4020b8.tar.gz skyblock-api-99508233778e29d41248cd233b2e58a92f4020b8.tar.bz2 skyblock-api-99508233778e29d41248cd233b2e58a92f4020b8.zip |
Profile customization (#46)
* add basic discord auth
* add uuid dependency
* add lastUpdated to sessions
* add route to get session from id
* add accounts collection
* update build
* add gm rank
* add `customization` url parameter
* add customization parameter to /player/:user
* add route to get info from discord id
* remove a console.log
* Update database.js
* Update package.json
* fix tests
* change mainSiteUrl
Diffstat (limited to 'src/index.ts')
-rw-r--r-- | src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts index 3d6bf6f..0937e4e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,7 +9,7 @@ const app = express() export const debug = false -const mainSiteUrl = 'http://localhost:8081' +const mainSiteUrl = 'https://skyblock.matdoes.dev' // 200 requests over 5 minutes const limiter = rateLimit({ |