Skip to content
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

[plugins] Use reflikes for plugins #1845

Merged
merged 24 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump timout to 10s
  • Loading branch information
mikeland73 committed Feb 22, 2024
commit e67d8e694d4c1e807330997ccb7f5c2bd809045e
2 changes: 1 addition & 1 deletion examples/stacks/lapp-stack/devbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"mkdir -p /tmp/devbox/lapp",
"initdb",
"devbox services up -b",
"echo 'sleep 5 second for the postgres server to initialize.' && sleep 5",
"echo 'sleep 10 second for the postgres server to initialize.' && sleep 10",
"cat .devbox/compose.log",
"dropdb --if-exists devbox_lapp",
"createdb devbox_lapp",
Expand Down
2 changes: 1 addition & 1 deletion examples/stacks/lepp-stack/devbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"rm -rf .devbox/virtenv/postgresql/data",
"initdb",
"devbox services up -b",
"echo 'sleep 5 second for the postgres server to initialize.' && sleep 5",
"echo 'sleep 10 second for the postgres server to initialize.' && sleep 10",
"dropdb --if-exists devbox_lepp",
"createdb devbox_lepp",
"psql devbox_lepp < setup_postgres_db.sql",
Expand Down
Loading