A mobile app to interact with github project boards.
We are using Expo based React Native for client and Go for the server.
-
Install Node.js.
-
Open a terminal in your cloned directory. Change directory to the
client
folder. Run this command:npm install
. This should install all the dependencies required to run the program on your mobile device or on an emulator. -
Install Expo.
- Run this anywhere in the terminal once you have node installed:
npm install -g expo-cli
- Run this anywhere in the terminal once you have node installed:
-
Run
expo start
in theclient
folder in the cloned directory. This should start an expo server and you should see a QR code. Now, you can download and install Expo mobile app on your phone and scan this QR code to see the mobile app, or use an emulator to run the app on your machine. For more information refer to this link: https://docs.expo.io
-
Install Go.
-
For testing, you need access to your Github account. To do that, follow these steps:
- Login to your GitHub account.
- Click on
settings
. Then click onDeveloper settings
. - Select
Personal Access Tokens
. Click onGenerate new token
. - Fill in some note:
PAT for testing githubprojectboards
and give it all permissions fornotifications
,user
andrepos
. - Finally click
Generate
. Now you need to copy this token. We will need it in the next step.
-
Change directory to the
server
folder in your terminal and create a file calledconfig.json
. Add these lines in it:
{
"pat": "<YOUR PERSONAL AUTHORIZATION TOKEN FROM GITHUB>"
}
- Change directory into the
server
folder and type in the command:go run server.go
. This will run the server in your machine.
Now you are all set up to run and test the app :)