-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Integrate Project Genie continuous building #62
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -107,6 +107,19 @@ module.exports = { | |||||||||
| COMPUTE_MODE: 'local', | ||||||||||
| ALWAYS_ON: 'true' | ||||||||||
| } | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| name: 'project-genie', | ||||||||||
| script: './scripts/genesis.cjs', | ||||||||||
| autorestart: true, | ||||||||||
| watch: false, | ||||||||||
| max_memory_restart: '300M', | ||||||||||
| restart_delay: 5000, | ||||||||||
| env: { | ||||||||||
| GENESIS_LOOP: 'true', | ||||||||||
| FORCE_MUTATION: 'true', | ||||||||||
|
Comment on lines
+119
to
+120
|
||||||||||
| GENESIS_LOOP: 'true', | |
| FORCE_MUTATION: 'true', | |
| GENESIS_LOOP: process.env.GENESIS_LOOP === 'true' ? 'true' : 'false', | |
| FORCE_MUTATION: process.env.FORCE_MUTATION === 'true' ? 'true' : 'false', |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
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.
project-genieis wired to run onlyscripts/genesis.cjs, which generates new.jsxfiles under the Observatory source tree, but this repository serves prebuiltyennefer-observatory/distassets. In that deployment mode, newly written mutation files are not picked up at runtime because the bundle is static (and mutation discovery is compiled into the build), so continuous mutations produced after startup will never appear in the live UI unless this PM2 flow also triggers a frontend rebuild/reload.Useful? React with 👍 / 👎.