d4b0659307
* Update root readme and setup depcheck * Use fetched domain data in edit domain dialog box * Use fetched project data in general tab * Rename files in gql-client package --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
52 lines
781 B
Markdown
52 lines
781 B
Markdown
# snowballtools
|
|
|
|
- Clone the `snowballtools` repo
|
|
|
|
```bash
|
|
git clone git@github.com:snowball-tools/snowballtools-base.git
|
|
```
|
|
|
|
- In root of the repo, install depedencies
|
|
|
|
```bash
|
|
yarn
|
|
```
|
|
|
|
- Build packages
|
|
|
|
```bash
|
|
yarn build
|
|
```
|
|
|
|
- Change directory to `packages/backend`
|
|
|
|
```bash
|
|
cd packages/backend
|
|
```
|
|
|
|
- Start the server
|
|
|
|
```bash
|
|
yarn start
|
|
```
|
|
|
|
- Copy the graphQL endpoint from terminal and add the endpoint in the `.env` file present in `packages/frontend`
|
|
|
|
```
|
|
REACT_APP_GQL_SERVER_URL = 'http://localhost:8000/graphql'
|
|
```
|
|
|
|
- Change directory to `packages/frontend`
|
|
|
|
```bash
|
|
cd packages/frontend
|
|
```
|
|
|
|
- Start the React application
|
|
|
|
```bash
|
|
yarn start
|
|
```
|
|
|
|
- The React application will be running in `http://localhost:3000/`
|