 Fungi photographed by thelostspore in Marin County A how-to guide from the creators of Maslo ----------------------------------------- The Maslo private beta iOS app shipped last September and was built using [Expo](https://expo.io/) — an open source toolchain built around React Native to help build native iOS and Android projects. Since then, we’ve had to [detach](https://docs.expo.io/versions/latest/guides/detach.html) to add native modules such as [RN Firebase](https://rnfirebase.io/), but figured we’d share our complete readme with instructions for deployment to iTunes Connect using [Fastlane’s Pilot](https://docs.fastlane.tools/actions/pilot/) and some documentation on avoiding a few pitfalls. The repo can be found [here](https://github.com/HeyMaslo/expo-start-to-standalone#expo-start-to-standalone-app). If you’re a web developer and haven’t tried out Expo, you’re in for a pleasant experience — the obvious upside is the ability to develop a native app using Javascript and React while avoiding native development IDEs like Xcode. Getting started is a breeze — install the `[exp](https://docs.expo.io/versions/latest/guides/exp-cli.html)` [CLI](https://docs.expo.io/versions/latest/guides/exp-cli.html) via npm and use the built-in scaffolding command to initialize your project. $ npm install -g exp $ exp init my-project If you’re starting with our repo, simply clone, install dependencies, and run the start up command (full instructions [here](https://github.com/HeyMaslo/expo-start-to-standalone#requirements), if you’re not using watchman \[not required\], you’ll need to [increase your max open system-level file limit](https://github.com/HeyMaslo/expo-start-to-standalone#pitfalls)). $ git clone git@github.com:HeyMaslo/expo-start-to-standalone.git $ cd expo-start-to-standalone `$ yarn `$ exp start After the Expo dev server boots up, you’ll be prompted to scan a QR code 🦄  Open the Expo Client app on your phone and scan it. Local build times are brief and Expo supports live reloading. Simply save your Javascript and the app will rebuild on the fly! We’ll save you the mind-blown gifs — code, preview, repeat. When you’re ready to share your app, publish your project to Expo’s CDN by updating your [app configuration](https://docs.expo.io/versions/latest/guides/configuration.html) & running `exp publish`. Once published, anyone with the Expo Client app can open a link to run the project on their device or in the browser on Expo’s [website](https://expo.io) via [Appetize](https://appetize.io) (get fancy and use `exp send` to text or email a link to your project). When the time comes, you’ll no doubt want to build your project for your platform of choice (initially we targeted iOS only). This process requires only three commands and takes up to ~45 minutes in total (aside from creating the app in iTunes Connect, you’ll need to install`[fastlane](https://github.com/HeyMaslo/expo-start-to-standalone#deployment)` [](https://github.com/HeyMaslo/expo-start-to-standalone#deployment)and [register for an Expo account](https://expo.io/signup), which can also be done with the CLI —`exp register`). $ exp build $ curl -O <.ipa download URL> $ fastlane pilot upload `exp build` prompts for your developer account information and asks how you’d like to manage your certificate (Expo [can handle this for you](https://docs.expo.io/versions/latest/guides/building-standalone-apps.html#if-you-choose-to-build-for-ios) but allows you to [upload your own](https://calvium.com/how-to-make-a-p12-file/)). Once the build is complete, you’ll be provided with a link to download an [.ipa](https://en.wikipedia.org/wiki/.ipa). Download the artifact and run the `fastlane` command (note: we use this [magic incantation](https://github.com/fastlane/fastlane/issues/4544#issuecomment-217519255) when running into [transport errors)](https://github.com/fastlane/fastlane/issues/4544) — after following the prompts and waiting for up to a half hour, your build will appear in your app’s build list 🙌 🎉  If you’re like us, you’ll want to celebrate a [deploy](http://help.apple.com/xcode/mac/current/#/dev067853c94) by pouring an IPA 🍺 Before raising your glass, show some love to the [folks at Expo](https://slack.expo.io/) for making it so easy to develop native apps 🍻 [**Maslo**](https://maslo.ai/) **is a voice journal with personality and smarts. Get Maslo for** [**iOS**](https://itunes.apple.com/us/app/maslo/id1330018942?mt=8)**.**