mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-06-17 02:29:10 +00:00
[bot] break out RPC and shared packages for bot service breakout
This commit is contained in:
parent
544ae65c58
commit
50b5e334a3
31 changed files with 233 additions and 111 deletions
|
@ -34,7 +34,8 @@ export type AppContext = {
|
|||
config: {
|
||||
appUrl: string,
|
||||
dev: boolean,
|
||||
hotReload: boolean
|
||||
hotReload: boolean,
|
||||
sharedSecret: string
|
||||
},
|
||||
ui: Next,
|
||||
uiHandler: Next.Handler,
|
||||
|
@ -85,7 +86,8 @@ class Roleypoly {
|
|||
config: {
|
||||
appUrl,
|
||||
dev,
|
||||
hotReload: process.env.NO_HOT_RELOAD !== '1'
|
||||
hotReload: process.env.NO_HOT_RELOAD !== '1',
|
||||
sharedSecret: process.env.SHARED_SECRET
|
||||
},
|
||||
io,
|
||||
ui,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue