Skip to content

Commit

Permalink
fix: attempt to fix Dockerfile front build (twentyhq#5020)
Browse files Browse the repository at this point in the history
  • Loading branch information
thaisguigon authored Apr 18, 2024
1 parent 86afc34 commit 7065495
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion packages/twenty-docker/twenty/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ARG REACT_APP_SERVER_BASE_URL

COPY ./packages/twenty-front /app/packages/twenty-front
COPY ./packages/twenty-ui /app/packages/twenty-ui
RUN yarn nx build twenty-front
RUN npx nx build twenty-front


# Final stage: Run the application
Expand Down
8 changes: 4 additions & 4 deletions packages/twenty-docs/docs/start/local-setup/yarn-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,15 @@ yarn nx database:reset twenty-server

Start the server and the frontend:
```bash
yarn nx start twenty-server
yarn nx start twenty-front
npx nx start twenty-server
npx nx start twenty-front
```

Alternatively, you can start both applications at once:
```bash
yarn nx start
npx nx start
# or
yarn nx start twenty
npx nx start twenty
```

Twenty's server will be up and running at [http://localhost:3000/graphql](http://localhost:3000/graphql).
Expand Down
8 changes: 4 additions & 4 deletions packages/twenty-front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"private": true,
"type": "module",
"scripts": {
"build": "npx nx exec -- vite build && sh ./scripts/inject-runtime-env.sh",
"build": "npx vite build && sh ./scripts/inject-runtime-env.sh",
"build:sourcemaps": "VITE_BUILD_SOURCEMAP=true NODE_OPTIONS=--max-old-space-size=3000 npx nx build",
"start:prod": "NODE_ENV=production npx nx exec -- vite --host",
"storybook:build": "npx nx exec -- storybook build",
"tsup": "npx nx exec -- tsup"
"start:prod": "NODE_ENV=production npx vite --host",
"storybook:build": "npx storybook build",
"tsup": "npx tsup"
},
"engines": {
"node": "^18.17.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/twenty-ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ This library was generated with [Nx](https://nx.dev).

## Building

Run `yarn nx build twenty-ui` to build the library.
Run `npx nx build twenty-ui` to build the library.

## Storybook Server

Run `yarn nx start twenty-ui` to start the storybook development server on `localhost:6006`.
Run `npx nx start twenty-ui` to start the storybook development server on `localhost:6006`.

## Running unit tests

Run `yarn nx test twenty-ui` to execute the unit tests via [Jest](https://jestjs.io).
Run `npx nx test twenty-ui` to execute the unit tests via [Jest](https://jestjs.io).

0 comments on commit 7065495

Please sign in to comment.