mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 19:11:32 +03:00
docs: update build guideline (#2434)
Co-authored-by: Himself65 <himself65@outlook.com>
This commit is contained in:
parent
fd35d3427e
commit
0a49258ddd
4
.gitignore
vendored
4
.gitignore
vendored
@ -28,9 +28,9 @@ node_modules
|
||||
|
||||
# IDE - VSCode
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/settings.template.json
|
||||
!.vscode/launch.template.json
|
||||
!.vscode/extensions.json
|
||||
|
||||
# misc
|
||||
|
@ -6,6 +6,12 @@
|
||||
"name": "Run Dev",
|
||||
"request": "launch",
|
||||
"type": "node-terminal"
|
||||
},
|
||||
{
|
||||
"command": "yarn run dev:local",
|
||||
"name": "Run Dev Locally",
|
||||
"request": "launch",
|
||||
"type": "node-terminal"
|
||||
}
|
||||
]
|
||||
}
|
@ -10,7 +10,7 @@ First, run the development server:
|
||||
pnpm run dev
|
||||
```
|
||||
|
||||
Open [http://localhost:8080](http://localhost:3000) with your browser to see the result.
|
||||
Open [http://localhost:8080](http://localhost:8080) with your browser to see the result.
|
||||
|
||||
You can start editing the page by modifying `src/pages/workspace/[workspaceId]/all.tsx`. The page auto-updates as you edit the file.
|
||||
|
||||
|
@ -31,13 +31,13 @@ nvm use 18
|
||||
|
||||
## Setup Environment
|
||||
|
||||
This setup requires modern yarn (currently `3.5.0`), run this if your yarn version is `1.x`
|
||||
This setup requires modern yarn (currently `3.x`), run this if your yarn version is `1.x`
|
||||
|
||||
Reference: [Yarn installation doc](https://yarnpkg.com/getting-started/install)
|
||||
|
||||
```sh
|
||||
corepack enable
|
||||
corepack prepare yarn@3.5.0 --activate
|
||||
corepack prepare yarn@stable --activate
|
||||
```
|
||||
|
||||
```sh
|
||||
@ -52,7 +52,7 @@ yarn install
|
||||
```shell
|
||||
# Run OctoBase container in background
|
||||
docker pull ghcr.io/toeverything/cloud-self-hosted:nightly-latest
|
||||
docker run --env=SIGN_KEY=test123 --env=RUST_LOG=debug --env=JWST_DEV=1 --env=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --workdir=/app -p 3000:3000 --runtime=runc -d ghcr.io/toeverything/cloud-self-hosted:nightly-latest
|
||||
docker run --env=SIGN_KEY=test123 --env=RUST_LOG=debug --env=JWST_DEV=1 --env=PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin --workdir=/app -p 127.0.0.1:3000:3000 --runtime=runc -d ghcr.io/toeverything/cloud-self-hosted:nightly-latest
|
||||
```
|
||||
|
||||
```shell
|
||||
|
@ -13,7 +13,7 @@
|
||||
"scripts": {
|
||||
"dev": "dev-web",
|
||||
"dev:ac": "API_SERVER_PROFILE=ac yarn workspace @affine/web dev",
|
||||
"dev:local": "API_SERVER_PROFILE=local yarn workspace @affine/web dev",
|
||||
"dev:local": "PORT=8080 API_SERVER_PROFILE=local yarn workspace @affine/web dev",
|
||||
"dev:app": "yarn workspace @affine/electron dev:app",
|
||||
"build": "yarn workspace @affine/web build",
|
||||
"build:client": "yarn workspace @affine/client-app build:app",
|
||||
|
Loading…
Reference in New Issue
Block a user