mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 12:42:31 +00:00
34 lines
645 B
Plaintext
34 lines
645 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# railway
|
|
|
|
> Connect code to a Railway project.
|
|
> More information: <https://railway.app/>.
|
|
|
|
- Login to a Railway account:
|
|
|
|
`railway login`
|
|
|
|
- Link to an existing Project under a Railway account or team:
|
|
|
|
`railway link {{projectId}}`
|
|
|
|
- Create a new project:
|
|
|
|
`railway init`
|
|
|
|
- Run a local command using variables from the active environment:
|
|
|
|
`railway run {{cmd}}`
|
|
|
|
- Deploy the linked project directory (if running from a subdirectory, the project root is still deployed):
|
|
|
|
`railway up`
|
|
|
|
- Open an interactive shell to a database:
|
|
|
|
`railway connect`
|