-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from Unshut-Labs/feat/xmtp-groups-dash
feat: Groups, UX, Frames
- Loading branch information
Showing
489 changed files
with
21,368 additions
and
11,556 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Typescript CI | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- feat/xmtp-groups-dash | ||
jobs: | ||
tsc: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v3 | ||
- run: yarn | ||
- run: yarn typecheck | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v3 | ||
- run: yarn | ||
- run: yarn lint |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# Building the App - iOS | ||
|
||
### Install JS/React Native Dependencies | ||
|
||
``` | ||
yarn | ||
``` | ||
|
||
### Install iOS Dependencies | ||
|
||
``` | ||
npx pod-install | ||
``` | ||
|
||
### Build the iOS App | ||
|
||
Open ios/Converse.xcworkspace in Xcode and Build | ||
|
||
# Building the App - Android | ||
|
||
### Install JS/React Native Dependencies | ||
|
||
``` | ||
yarn | ||
``` | ||
|
||
### Install submodules for Android patched fork | ||
|
||
``` | ||
git submodule update | ||
``` | ||
|
||
### Build the Android App | ||
|
||
Open Android Studio | ||
press the top right gradle icon to sync gradle | ||
Click the play/build button to build and install the app | ||
|
||
### Forward backend port | ||
|
||
if running the backend locally | ||
|
||
``` | ||
adb reverse tcp:9875 tcp:9875 | ||
``` | ||
|
||
# Running the App | ||
|
||
Once the app builds it will open the Expo App | ||
this will ask what server port you are targetting, if none are found, you probably need to start the expo server | ||
|
||
### Start Expo Server | ||
|
||
``` | ||
yarn start | ||
``` | ||
|
||
# Linting | ||
|
||
``` | ||
yarn lint | ||
``` | ||
|
||
# Testing | ||
|
||
Before running the tests make sure that you have a `.env` file setup with the `DEV_API_URI` variable set | ||
|
||
```sh | ||
# In the `converse-backend` repo | ||
yarn dev | ||
# Back in this repo | ||
yarn test | ||
``` | ||
|
||
|
||
# Key Cases Needed for App Release | ||
|
||
1. Old conversations are persisted | ||
2. Can send a message without duplicates | ||
3. Can create a group |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ build/ | |
local.properties | ||
*.iml | ||
*.hprof | ||
.cxx/ | ||
|
||
# Bundle artifacts | ||
*.jsbundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.