Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lifeparticle/Vercel-Cheatsheet
Vercel Cheatsheet
https://github.com/lifeparticle/Vercel-Cheatsheet
Last synced: 3 months ago
JSON representation
Vercel Cheatsheet
- Host: GitHub
- URL: https://github.com/lifeparticle/Vercel-Cheatsheet
- Owner: lifeparticle
- License: mit
- Created: 2020-12-28T06:06:27.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-28T09:12:14.000Z (about 4 years ago)
- Last Synced: 2024-08-01T10:19:19.771Z (6 months ago)
- Size: 11.7 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction
1. [Vercel CLI](https://vercel.com/download)
- [Documentation](https://vercel.com/docs/cli)
2. [Configuration](https://vercel.com/docs/configuration)
3. [Runtimes](https://vercel.com/docs/runtimes)- [Officially supported runtimes](https://vercel.com/docs/runtimes#official-runtimes)
1. [Node.js](https://www.npmjs.com/package/@vercel/node)
```json
{
"functions": {
"api/*.js": { "runtime": "@vercel/[email protected]" }
}
}
```2. [Go](https://www.npmjs.com/package/@vercel/go)
```json
{
"functions": {
"api/*.go": { "runtime": "@vercel/[email protected]" }
}
}
```3. [Python](https://www.npmjs.com/package/@vercel/python)
```json
{
"functions": {
"api/*.py": { "runtime": "@vercel/[email protected]" }
}
}
```4. [Ruby](https://www.npmjs.com/package/@vercel/ruby)
```json
{
"functions": {
"api/*.rb": { "runtime": "@vercel/[email protected]" }
}
}
```- [Community Runtimes](https://vercel.com/docs/runtimes#advanced-usage/community-runtimes)
1. [PHP](https://www.npmjs.com/package/vercel-php)
```json
{
"functions": {
"api/*.php": { "runtime": "[email protected]" }
},
"routes": [
{ "src": "/(.*)", "dest": "/api/index.php" }
]
}
```2. [Bash](https://www.npmjs.com/package/vercel-bash)
```json
{
"functions": {
"api/*.sh": { "runtime": "[email protected]" }
}
}
```3. [Deno](https://www.npmjs.com/package/vercel-deno)
```json
{
"functions": {
"api/**/*.[jt]s": { "runtime": "[email protected]" }
}
}
```4. [Rust](https://www.npmjs.com/package/vercel-rust)
```json
{
"functions": {
"api/*.rs": { "runtime": "@vercel/[email protected]" }
}
}
```# Examples
1. [Ruby](https://github.com/lifeparticle/vercel-cheatsheet/tree/main/ruby)
2. [Python](https://github.com/lifeparticle/vercel-cheatsheet/tree/main/python)
3. [PHP](https://github.com/lifeparticle/vercel-cheatsheet/tree/main/php)Bug Reports and Feature Requests
============
Please create an issue with as much information you can. Thank you.Author
============
Mahbub Zaman (https://mahbub.ninja)License
============
MIT License