-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,39 +13,20 @@ toc: true | |
|
||
2. Clone the repository: | ||
|
||
```bash | ||
git clone [email protected]:Grapycal/GrapycalPrivate.git | ||
cd GrapycalPrivate | ||
git submodule update --init --recursive | ||
git checkout dev | ||
``` | ||
```bash | ||
git clone [email protected]:Grapycal/GrapycalPrivate.git | ||
cd GrapycalPrivate | ||
git checkout dev | ||
``` | ||
|
||
3. Install grapycal backend and grapycal-builtin as editable packages: | ||
3. Install dependencies: | ||
|
||
```bash | ||
pip install -e backend -e extensions/grapycal_builtin | ||
``` | ||
```bash | ||
scripts/dev_setup.sh | ||
``` | ||
|
||
4. Install the frontend: | ||
4. Run the development server: | ||
|
||
```bash | ||
cd frontend | ||
npm install | ||
cd .. | ||
``` | ||
|
||
5. Start the backend: | ||
|
||
By running grapycal in `extensions` directory, you can import every extensions there locally. | ||
|
||
```bash | ||
cd extensions/ | ||
grapycal --no-http | ||
``` | ||
|
||
6. Start the frontend server in another terminal: | ||
|
||
```bash | ||
cd frontend | ||
npm run app | ||
``` | ||
```bash | ||
scripts/dev.sh | ||
``` |