Why the agent can’t deploy to production
The agent in your chats works on your dev backend. It can’t deploy to production, change production secrets or read production logs. If it tries, it gets “Managed Newly agent sessions can operate only on the dev backend”. This keeps your live app safe from changes made while you’re still building. To ship to production, you use the newly CLI (command-line tool) on your own computer, signed in as yourself. You need to be the project’s owner or have Admin access to it.Deploy your backend to production
You need a terminal and Node 20 or later.1
Install the newly CLI
2
Sign in
--google or --github. Use the same account you use in the web app or the Mac app.3
Download the latest code
In an empty folder, run:Your project id is the last part of the web app address:
app.newly.app/projects/<id>. This downloads the dev branch, which is where the agent works. See Get your code for the options.4
Deploy to production
From the folder you pulled, run:The command deploys the
backend/ folder on your computer. If your project doesn’t have a production backend yet, the command sets one up first.Secrets and API keys
A secret is a private value your backend needs, such as a payment provider key or a Google sign-in client secret.Don’t paste secrets into a chat
The agent won’t take a secret pasted into a chat. Set secrets with the newly CLI instead.Set a dev secret
From a freshly pulled project folder, run:- Use
--service apifor keys your app’s own server code uses. - Use
--service authfor sign-in keys, such asGOOGLE_CLIENT_ID. See Sign-in for your app. - Always pass
--service apior--service auth. The default doesn’t work, and the command fails with “service must be api or auth”. - A secret takes effect on the next deploy.
newly deploy --env devalso deploys your localbackend/folder, so pull the latest code first.
newly secrets list --service api (or --service auth).
Production secrets
The newly CLI sets secrets for dev. For production secrets, contact support. See Getting help. If the tool says production secrets require the Newly web app, that screen doesn’t exist. Contact support instead.Public settings in your app
Some values aren’t secret, such as your backend’s public address. These go in your app’sapp.json under expo.extra.
Never put a secret inside your app. Anyone can extract values from an app they’ve downloaded. Keep secrets on your backend and let your backend call the other service.
The Credentials panel is not for app keys
In the Mac app, Settings → Credentials holds keys for the agent and its tools, such as your Claude, OpenAI or Expo credentials. It doesn’t send keys to your app or your backend, even if the agent points you there. Usenewly secrets set for your app’s keys.
Dev-only commands
These commands work for dev only:Creating a backend-only project needs credits
newly create makes a new backend-only project from the command line. It needs a positive credit balance. With no credits, it shows “You do not have any credits left.” Add credits and try again. See Running out of credits.
Related
Get your code
Install the newly CLI and download your project.
AI features in your app
Let your app use AI models, and what that costs.