-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates for analytics processors #900
base: main
Are you sure you want to change the base?
Conversation
thegoldenmule
commented
Jan 22, 2025
- Updated the template
- Updated the rwa-analytics processor
- Updated some setup
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -22,7 +22,12 @@ export const DefaultReactorOptions = { | |||
|
|||
async function startLocalReactor(reactorOptions: ReactorOptions) { | |||
const baseConfig = getConfig(); | |||
const options = { ...DefaultReactorOptions, ...reactorOptions }; | |||
console.log("baseConfig", baseConfig); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets remove this
@@ -2,6 +2,6 @@ import { startServer } from "./server"; | |||
|
|||
export * from "./server"; | |||
|
|||
startServer({ dev: true }).catch((error: unknown) => { | |||
startServer({ dev: true, dbPath: "postgresql://postgres:password@localhost:5555/analytics" }).catch((error: unknown) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we want, that the local reactor requires a local postgres installation by default? I think thats going to break a lot of things.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yah, probably.
* Delete the file and run the code generator again to have it reset | ||
*/ | ||
|
||
export * as RwaAnalyticsProcessor from "./rwa-analytics"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doe we want the rwa analytics processor as default package for all local reactor installations?
@thegoldenmule do we want to close this? |
Sorry @froid1911 just saw this. I will check it out tomorrow. |