https://github.com/discourse/discoursemobile
Discourse Mobile
https://github.com/discourse/discoursemobile
Last synced: 7 months ago
JSON representation
Discourse Mobile
- Host: GitHub
- URL: https://github.com/discourse/discoursemobile
- Owner: discourse
- License: mit
- Created: 2016-08-10T11:57:25.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2025-05-13T13:22:25.000Z (7 months ago)
- Last Synced: 2025-05-16T10:07:01.733Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 238 MB
- Stars: 266
- Watchers: 31
- Forks: 60
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Discourse Mobile
Native iOS and Android app for Discourse
## Getting Started
Install Yarn and Watchman
```
npm install -g yarn
brew install watchman
```
Install all the project dependencies:
```
yarn
```
On macOS, make sure you install CocoaPods and its packages:
```
bundle
pod install --project-directory=ios
```
Once installed you can get started with:
```
npx react-native start
// and in a second terminal, either:
npx react-native run-ios
// or
npx react-native run-android
```
See more at: https://facebook.github.io/react-native/docs/getting-started.html
Note, on Android your localhost may not be accessible from the simulator, read the error message carefully and consider running:
```
adb reverse tcp:8081 tcp:8081
```