-
Notifications
You must be signed in to change notification settings - Fork 19
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
[Issues 1259] add frontend make build target #1260
Conversation
artillery run -e production artillery-load-test.yml |
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.
Not sure what this was about
@@ -40,6 +40,9 @@ release-build: | |||
################################################## | |||
# Local development | |||
################################################## | |||
build: # Build the Next.js local dev server in Docker | |||
docker-compose build --no-cache nextjs | |||
|
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.
There might be a better option for updating local packages in docker - but this was the quick solution
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.
Approving, but please remove the dash from docker-compose
before merging as that has been deprecated
frontend/Makefile
Outdated
@@ -40,6 +40,9 @@ release-build: | |||
################################################## | |||
# Local development | |||
################################################## | |||
build: # Build the Next.js local dev server in Docker | |||
docker-compose build --no-cache nextjs |
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.
docker-compose build --no-cache nextjs | |
docker compose build --no-cache nextjs storybook |
docker compose doesn't get a dash anymore, I also type it accidentally all the time.
let's add storybook here too, unless you want to have separate build-dev and build-storybook make commands.
can you also update our renovate review instructions with this make command here
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.
I propose splitting splitting up the app and storybook to make it more modular
Summary
Fixes #1259
Time to review: 1 min
Changes proposed
Context for reviewers
make dev
, local docker needs to rebuild to pull in new dependencies