Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mcseekeri/sciadvwaline
https://github.com/mcseekeri/sciadvwaline
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mcseekeri/sciadvwaline
- Owner: MCSeekeri
- Created: 2021-01-28T05:23:26.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-26T09:22:48.000Z (5 months ago)
- Last Synced: 2024-08-26T11:45:25.115Z (5 months ago)
- Language: JavaScript
- Homepage: sciadvwaline-git-master.mcseekeri.vercel.app
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Waline Example
This directory is a brief example of a [Waline](https://waline.js.org/) app that can be deployed with Vercel and zero configuration.
## Deploy Your Own
Deploy your own Waline project with Vercel.
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/import/project?template=https://github.com/lizheming/waline/tree/master/example)
### How We Created This Example
```js
//index.js
const Waline = require('@waline/vercel');
module.exports = Waline();//vercel.json
{
"builds": [
{
"src": "index.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "index.js"
}
]
}
```### Deploying From Your Terminal
You can deploy your new Waline project with a single command from your terminal using [Vercel CLI](https://vercel.com/download):
```shell
$ vercel
```