<@U04UQ68083H>, can i use Ory to allow my CLI app ...
# ory-copilot
s
@chilly-king-10285, can i use Ory to allow my CLI app users log into their accounts?
c
A message from kapa.ai
Yes, you can use Ory to manage user authentication for your CLI app. Ory provides a set of tools and protocols for identity and access management, including authentication. You can use the Ory CLI to configure and manage your projects. The CLI also includes Ory Proxy, a reverse proxy that rewrites cookies to match the domain your application is currently on. This allows you to easily connect your application to the Ory Network and consume the APIs without additional configuration or self-hosting any Ory services. Here is an example of how to install the Ory CLI for a Node.js / Express.js application:
Copy code
bash npm i --save @ory/cli
For more information, you can refer to the [Ory CLI documentation](https://www.ory.sh/docs/guides/cli/proxy-and-tunnel). Sources: - [Integrate authentication into Node.js / Express.js](https://www.ory.sh/docs/getting-started/integrate-auth/expressjs#install-ory-cli) - [Integrate authentication into Go](https://www.ory.sh/docs/getting-started/integrate-auth/go#install-ory-cli)