Set of endpoints utilities for PancakeSwap, based on Serverless.
- Vercel CLI
- Required to emulate local environment (serverless functions).
yarn global add vercel
# Install dependencies
yarn
# Build project
vercel dev
Endpoints are based on filename inside the api/
folder.
# api/version.ts
curl -X GET 'localhost:3000/api/version'
# ...
Deployments to production should be triggered by a webhook when a commit, or a pull-request is merged to master
.
If you need to force a deployment, use the following command:
vercel --prod