snowballtools-base/README.md
Nabarun Gogoi e1e9a7063e Implement Github authentication to show repositories list (#45)
* Use react-oauth-popup for github authentication popup

* Fetch auth token and use in app to fetch list of repositories

* Get client id and secret from config

* Use GitHub search API for fetching repos

* Use debounce for searching repos and projects
2024-02-01 11:37:57 +05:30

62 lines
1.1 KiB
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 --ignore frontend
```
- Change directory to `packages/backend`
```bash
cd packages/backend
```
- Load fixtures in database
```bash
yarn db:load:fixtures
```
- Set `githubOauth.clientId` and `githubOauth.clientSecret` in backend [config file](packages/backend/environments/local.toml)
- 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
```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/`