fix: attempt to fix Dockerfile front build (#5020)

This commit is contained in:
Thaïs 2024-04-18 11:24:39 +02:00 committed by GitHub
parent 86afc34e61
commit 7065495223
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 12 deletions

View File

@ -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

View File

@ -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).

View File

@ -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",

View File

@ -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).