Go to file
prathamesh0 cbc394f9f8 Handle remove member operation in frontend (#32)
* Add remove member gql client method

* Handle remove member UI operation

* Refactor fetching of project members

* Rename type MemberPermission to ProjectMember

* Add types to gql client response

* Remove circular dependency in gql client types

---------

Co-authored-by: neeraj <neeraj.rtly@gmail.com>
2024-02-01 11:37:57 +05:30
.github/workflows Add github CI for running lint (#5) 2023-12-11 12:04:33 +05:30
.husky Add husky to run pre-commit lint (#3) 2023-12-08 09:59:45 +05:30
packages Handle remove member operation in frontend (#32) 2024-02-01 11:37:57 +05:30
.gitignore Implement monorepo with lerna (#1) 2023-12-06 16:07:12 +05:30
lerna.json Add husky to run pre-commit lint (#3) 2023-12-08 09:59:45 +05:30
package.json Update instructions and general package cleanup (#29) 2024-02-01 11:37:57 +05:30
README.md Add fixtures for remaining entities in database initialization script (#36) 2024-02-01 11:37:57 +05:30
yarn.lock Add script to load fixture data in database (#34) 2024-02-01 11:37:57 +05:30

snowballtools

  • Clone the snowballtools repo

    git 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
    
  • 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/