mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
parent
0f4bf14bd6
commit
70a76e5280
2 changed files with 36 additions and 28 deletions
|
@ -1,28 +0,0 @@
|
|||
# now
|
||||
|
||||
> Cloud platform for serverless deployment.
|
||||
> More information: <https://zeit.co/now>.
|
||||
|
||||
- Deploy the current directory:
|
||||
|
||||
`now`
|
||||
|
||||
- Display a list of deployments:
|
||||
|
||||
`now list`
|
||||
|
||||
- Display information related to a deployment:
|
||||
|
||||
`now inspect {{deployment_url}}`
|
||||
|
||||
- Remove a deployment:
|
||||
|
||||
`now remove {{deployment_id}}`
|
||||
|
||||
- Log in into an account or create a new one:
|
||||
|
||||
`now login`
|
||||
|
||||
- Initialize an example project (a new directory will be created):
|
||||
|
||||
`now init`
|
36
pages/common/vercel.md
Normal file
36
pages/common/vercel.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# vercel
|
||||
|
||||
> Deploy and manage your Vercel deployments.
|
||||
> More information: <https://vercel.com/docs/cli>.
|
||||
|
||||
- Deploy the current directory:
|
||||
|
||||
`vercel`
|
||||
|
||||
- Deploy the currrent directory to production:
|
||||
|
||||
`vercel --prod`
|
||||
|
||||
- Deploy a directory:
|
||||
|
||||
`vercel {{path/to/project}}`
|
||||
|
||||
- Initialize an example project:
|
||||
|
||||
`vercel init`
|
||||
|
||||
- Deploy with Environment Variables:
|
||||
|
||||
`vercel --env {{ENV}}={{var}}`
|
||||
|
||||
- Build with Environment Variables:
|
||||
|
||||
`vercel --build-env {{ENV}}={{var}}`
|
||||
|
||||
- Set default regions to enable the deployment on:
|
||||
|
||||
`vercel --regions {{region_id}}`
|
||||
|
||||
- Remove a deployment:
|
||||
|
||||
`vercel remove {{project_name}}`
|
Loading…
Add table
Reference in a new issue