Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juicyfx/vercel-runtimes
🏋️♂️ Vercel Runtimes by @f3l1x
https://github.com/juicyfx/vercel-runtimes
aws deployment functions juicyfx lambda now php runtimes serverless vercel
Last synced: about 1 month ago
JSON representation
🏋️♂️ Vercel Runtimes by @f3l1x
- Host: GitHub
- URL: https://github.com/juicyfx/vercel-runtimes
- Owner: juicyfx
- License: mit
- Created: 2019-06-21T19:28:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-09-29T14:06:23.000Z (about 1 year ago)
- Last Synced: 2023-09-29T18:11:46.785Z (about 1 year ago)
- Topics: aws, deployment, functions, juicyfx, lambda, now, php, runtimes, serverless, vercel
- Language: TypeScript
- Homepage: https://f3l1x.io
- Size: 76.8 MB
- Stars: 13
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Vercel Runtimes
The main goal is to dig deeper into Vercel Runtimes.
The development started with PHP builder, which has been separated into vercel-php.
At this time this repository contains a testing versions of various runtimes.
🕹 f3l1x.io | 💻 f3l1x | 🐦 @xf3l1x## Builders
### Plain
```json
{
"builds": [
{ "src": "file.txt", "use": "[email protected]" }
]
}
```### [🐘 PHP](https://github.com/vercel-community/php)
```json
{
"builds": [
{ "src": "index.php", "use": "[email protected]" }
]
}
```### Markdown
```json
{
"builds": [
{
"src": "**/*.md",
"use": "[email protected]",
"config": {
"title": "Demo Project",
"css": [
"https://CDN/lib.css",
"/dist/theme.css"
],
"js": [
"https://CDN/lib.js",
"/dist/main.js"
]
}
}
]
}
```### Debug
```json
{
"builds": [
{ "src": "file.txt", "use": "[email protected]" }
]
```## 📝 License
Copyright © 2019 [f3l1x](https://github.com/f3l1x).
This project is [MIT](LICENSE) licensed.