An open API service indexing awesome lists of open source software.

https://github.com/discourse/DiscourseMobile

Discourse Mobile
https://github.com/discourse/DiscourseMobile

Last synced: 7 months ago
JSON representation

Discourse Mobile

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
```