docs: Adjust development setup page for new package setup

This commit is contained in:
Faruk AYDIN
2024-11-21 12:37:15 +03:00
parent da788106af
commit b89197939a
3 changed files with 1205 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
"license": "See LICENSE file",
"description": "The open source Zapier alternative. Build workflow automation without spending time and money.",
"private": true,
"type": "module",
"scripts": {
"dev": "vitepress dev pages --port 3002",
"build": "vitepress build pages",

View File

@@ -6,11 +6,19 @@ Clone main branch of Automatisch.
git clone git@github.com:automatisch/automatisch.git
```
Then, install the dependencies.
Then, install the dependencies for both backend and web packages separately.
```bash
cd automatisch
# Install backend dependencies
cd packages/backend
yarn install
# Install web dependencies
cd packages/web
yarn install
```
## Backend
@@ -53,12 +61,14 @@ yarn db:seed:user
Start the main backend server.
```bash
cd packages/backend
yarn dev
```
Start the worker server in another terminal tab.
```bash
cd packages/backend
yarn worker
```
@@ -84,6 +94,7 @@ It will automatically open [http://localhost:3001](http://localhost:3001) in you
```bash
cd packages/docs
yarn install
yarn dev
```

1192
packages/docs/yarn.lock Normal file

File diff suppressed because it is too large Load Diff