Skip to content

Commit

Permalink
docs: update contributing guide with new bootstrap command
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric committed Dec 4, 2024
1 parent feee76e commit 0328be8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- Update `~/.chalet/conf.json` to use `{ "tld": "test" }`
- [Configure your system or browser to use the `.test` domain](https://github.com/jeansaad/chalet/blob/master/docs/README.md#system-configuration-recommended)
- Restart or refresh your network settings to apply the chalet changes
5. Run `yarn build` in the root directory to prepare the installation.
5. Run `yarn bootstrap` in the root directory to prepare the installation.

## 🏎️ Start the Development environment

Expand Down Expand Up @@ -69,4 +69,3 @@ Hungry for more, check out these great guides:
- [Expo JavaScript/TypeScript Style Guide](https://github.com/expo/expo/blob/master/guides/Expo%20JavaScript%20Style%20Guide.md)
- [Git and Code Reviews at Expo](https://github.com/expo/expo/blob/master/guides/Git%20and%20Code%20Reviews.md)
- [Our Open Source Standards](https://github.com/expo/expo/blob/master/guides/Our%20Open%20Source%20Standards.md)

2 changes: 1 addition & 1 deletion snackager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RUN apk --no-cache add git openssh-client
COPY --from=development /app .
# Ensure Snackager is build, has dependencies, and remove unnecessary dependencies from workspaces
RUN yarn turbo build --filter "{./snackager}..." && \
yarn install --frozen-lockfile --production
yarn install --frozen-lockfile --production --ignore-scripts


# --- Production - Run Snackager in production
Expand Down
2 changes: 1 addition & 1 deletion website/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ ENV NODE_ENV "production"
COPY --from=development /app .
# Ensure website is build, has dependencies, and remove unnecessary dependencies from workspaces
RUN yarn turbo build --filter "{./website}..." && \
yarn install --frozen-lockfile --production
yarn install --frozen-lockfile --production --ignore-scripts


# --- Production - Run website in production
Expand Down

0 comments on commit 0328be8

Please sign in to comment.