diff --git a/pages/common/now.md b/pages/common/now.md deleted file mode 100644 index 2af5261038..0000000000 --- a/pages/common/now.md +++ /dev/null @@ -1,28 +0,0 @@ -# now - -> Cloud platform for serverless deployment. -> More information: . - -- 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` diff --git a/pages/common/vercel.md b/pages/common/vercel.md new file mode 100644 index 0000000000..8db863a814 --- /dev/null +++ b/pages/common/vercel.md @@ -0,0 +1,36 @@ +# vercel + +> Deploy and manage your Vercel deployments. +> More information: . + +- 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}}`