Skip to content

Example AugmentOS App. Fork this, and follow the readme to build your own smart glasses app.

Notifications You must be signed in to change notification settings

AugmentOS-Community/AugmentOS-Cloud-Example-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

57837ac · Apr 1, 2025

History

16 Commits
Mar 1, 2025
Apr 1, 2025
Mar 1, 2025
Mar 30, 2025
Mar 30, 2025
Mar 30, 2025
Mar 30, 2025

Repository files navigation

AugmentOS-Cloud-Example-App

Install AugmentOS on your phone

AugmentOS install links: AugmentOS.org/install

(Easiest way to get started) Set up ngrok

  1. brew install ngrok

  2. Make an ngrok account

  3. Use ngrok to make a static address/URL

Register your APP with AugmentOS

image
  1. Navigate to console.AugmentOS.org

  2. Click "Sign In", and log in with the same account you're using for AugmentOS

  3. Click "Create App"

  4. Set a unique package name like com.yourName.yourAppName

  5. For "Public URL", enter your Ngrok's static URL

Get your APP running!

  1. Install bun

  2. Clone this repo: git clone [email protected]:AugmentOS-Community/AugmentOS-Cloud-Example-App.git

  3. cd into your repo, then type bun install

  4. Edit your index.ts to match the app you registered at console.AugmentOS.org

const app = new ExampleAugmentOSApp({
  packageName: 'com.yourName.yourAppName', // The packageName you specified on console.AugmentOS.org
  apiKey: 'your_api_key', // Get this from console.AugmentOS.org
  port: 3000 // The port you're hosting the server on
});
  1. Run your app with bun run index.ts

  2. To expose your app to the internet (and thus AugmentOS) with ngrok, run: ngrok http --url=<YOUR_NGROK_URL_HERE> 3000

    • 3000 is the port. It must match what is in the app config. If you entered port: 8080, use 8080 for ngrok instead.

About

Example AugmentOS App. Fork this, and follow the readme to build your own smart glasses app.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published