AugmentOS install links: AugmentOS.org/install
-
brew install ngrok
-
Make an ngrok account

-
Navigate to console.AugmentOS.org
-
Click "Sign In", and log in with the same account you're using for AugmentOS
-
Click "Create App"
-
Set a unique package name like
com.yourName.yourAppName
-
For "Public URL", enter your Ngrok's static URL
-
Clone this repo:
git clone [email protected]:AugmentOS-Community/AugmentOS-Cloud-Example-App.git
-
cd into your repo, then type
bun install
-
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
});
-
Run your app with
bun run index.ts
-
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 enteredport: 8080
, use8080
for ngrok instead.