https://github.com/devanb/find-the-iss-envy
https://github.com/devanb/find-the-iss-envy
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devanb/find-the-iss-envy
- Owner: DevanB
- Created: 2018-04-29T15:59:47.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-29T16:00:04.000Z (about 7 years ago)
- Last Synced: 2025-01-03T14:53:20.875Z (5 months ago)
- Language: JavaScript
- Size: 1.17 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Find the ISS
WebAR proof-of concept lovingly made by Envy Labs.
🚀 https://envylabs.github.io/find-the-iss/
### Requirements
- iOS 11 Safari
- Chrome for Android (unless it’s really old)# Setup
This requires [ngrok](https://ngrok.com/) (`brew cask install ngrok`) and
signing up for a free API key. Once you have your API key, run:```
ngrok authtoken [my-auth-token]
```You only have to run this once. To finish setup, using [Yarn](https://yarnpkg.com/), run:
```
yarn
```# Development
In one Terminal tab, start ngrok:
```
yarn ngrok
```And in another tab, start the development server:
```
yarn start
```In your ngrok tab, you’ll see a URL that looks like `https://[hash].ngrok.io`.
That’s the URL you can load up from your desktop or phone, rather than the
usual `localhost`.# Deployment
Deployment uses AWS. To deploy to production, first install
[aws-cli](https://github.com/aws/aws-cli):```
brew install awscli
```Then configure with the **MadeWithEnvySiteUploader** credentials from 1Password
```
aws configure
AWS Access Key ID: [your access key]
AWS Secret Access Key: [your secret access key]
``````
yarn build
yarn deploy
```…
¯\\_(ツ)_/¯