https://github.com/weakish/fastify-getting-started
LeanEngine fastify getting started
https://github.com/weakish/fastify-getting-started
Last synced: 5 days ago
JSON representation
LeanEngine fastify getting started
- Host: GitHub
- URL: https://github.com/weakish/fastify-getting-started
- Owner: weakish
- License: other
- Created: 2019-11-01T11:29:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2026-05-10T04:59:44.000Z (about 1 month ago)
- Last Synced: 2026-05-10T06:52:32.897Z (about 1 month ago)
- Language: JavaScript
- Size: 298 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fastify Getting Started
Deploying [Fastify] on [LeanEngine] Node.js environment.
[Fastify]: https://www.fastify.io/
[LeanEngine]: https://docs.leancloud.app/leanengine_overview.html
## Quick Start
Make sure you have installed [lean-cli] and have created an application at [LeanCloud].
[lean-cli]: https://docs.leancloud.app/leanengine_cli.html
[LeanCloud]: https://leancloud.app/
Then run the following command to bind the application:
```sh
git clone https://github.com/weakish/fastify-getting-started your-project-name
cd your-project-name
lean switch
```
Run the project locally:
```sh
npm ci
lean up
```
Then you can visit the site locally at http://127.0.0.1:3000
Deploy the project to LeanEngine staging environment (if not available, it will deploy to production environment):
```sh
lean deploy
```