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 (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-12-03T03:15:59.000Z (7 months ago)
- Last Synced: 2024-12-03T04:20:19.899Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 237 MB
- Stars: 252
- Watchers: 31
- Forks: 58
- Open Issues: 14
-
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
```