-
Notifications
You must be signed in to change notification settings - Fork 7
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
F2: Frontend setup #585
F2: Frontend setup #585
Conversation
@@ -5,6 +5,7 @@ const config = { | |||
sourcemap: "external", | |||
entrypoints: ["app/javascript/application.js"], | |||
outdir: path.join(process.cwd(), "app/assets/builds"), | |||
// minify: true |
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'm keeping minification disabled during the prototyping stage of the F2.
curl \ | ||
&& gem install bundler:'~> 2.5' \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -fsSL https://bun.sh/install | bash | ||
|
||
ENV PATH="/root/.bun/bin:${PATH}" | ||
|
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.
Ensure bun is available in the development environment when ssh-ing into the app
container.
Summary
Changes