mirror of
https://github.com/snowball-tools/snowballtools-base
synced 2024-11-17 23:39:18 +00:00
Nabarun Gogoi
aa49bb0de2
* Add mutation to update prod branch for project * Implement frontend to update production branch * Handle review changes * Update README for Github creating OAuth app --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com> |
||
---|---|---|
.github/workflows | ||
.husky | ||
packages | ||
.gitignore | ||
lerna.json | ||
package.json | ||
README.md | ||
yarn.lock |
snowballtools
-
Clone the
snowballtools
repogit 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/backend
cd packages/backend
-
Load fixtures in database
yarn db:load:fixtures
-
Set
githubOauth.clientId
andgithubOauth.clientSecret
in 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
- In "Homepage URL", type
http://localhost:3000
- In "Authorization callback URL", type
http://localhost:3000/projects/create
- Generate a new client secret after app is created
- Client id and secret will be available after creating Github OAuth app
-
Start the server
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
cd packages/frontend
-
Start the React application
yarn start
-
The React application will be running in
http://localhost:3000/