forked from cerc-io/snowballtools-base
* Make use of domain id for redirecting domains * Add checks in backend to prevent chain redirecting and editing redirected domain * Add self relation to domain entity and use it to create and edit domains * Add self referencing relation to initialize db script * Add redirectToId column in domain entity * Remove isRedirected flag from domain entity * Refactor edit domain dialog box * Use dummy data for repository --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com> |
||
|---|---|---|
| .github/workflows | ||
| .husky | ||
| packages | ||
| .gitignore | ||
| lerna.json | ||
| package.json | ||
| README.md | ||
| yarn.lock | ||
snowballtools
-
Clone the
snowballtoolsrepogit clone git@github.com:snowball-tools/snowballtools-base.git -
In root of the repo, install depedencies
yarn -
Build packages
yarn build --ignore frontend -
Change directory to
packages/backendcd packages/backend -
Load fixtures in database
yarn db:load:fixtures -
Set
githubOauth.clientIdandgithubOauth.clientSecretin backend config file- Client id and secret will be available after creating Github OAuth app
- https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/creating-an-oauth-app
-
Start the server
yarn start -
Copy the graphQL endpoint from terminal and add the endpoint in the
.envfile present inpackages/frontendREACT_APP_GQL_SERVER_URL = 'http://localhost:8000/graphql' -
Change directory to
packages/frontendcd packages/frontend -
Start the React application
yarn start -
The React application will be running in
http://localhost:3000/