am-create-fastify
v0.0.3
Published
Fastify project generator
Readme
fastify-project-generator
Convenient way to scaffold fastify project
Installation
$ npm install -g am-create-fastifyQuick Start
To use a PostgreSQL database, run the following command:
$ npx am-create-fastify "project name" --template pg By default, the database used is MongoDB.
The quickest way to get started is to use npx and pass in the name of the project you want to create. To create the app, run:
$ npx am-create-fastify "project name"Then, start your Fastify app in development mode at http://localhost:3000/:
$ cd "project name"
$ yarn install
$ yarn dev