Generate a new project.

https://docs.feathersjs.com/guides/basics/generator.html

1 - Install @feathersjs/cli

feathers-mongoose-casl >= 2.0.0 support only feathers >= 4.3.3 Before you generate a new app please check that your @feathersjs/cli version >= 4.1.1 To check run:

$ feathers -v

npm install -g @feathersjs/cli

2 - Generate a new project

mkdir my-new-app
cd my-new-app/
feathers generate app

3 - Update port from env

* needed when deploy to heroku Open src/index.js replace const port = app.get('port'); with const port = process.env.PORT || app.get('port');

4 - Git push

git init
git add .
git commit -m "Create new feathers app"

Last updated

Was this helpful?