nothingismagick / quasar-starter-ssr-pwa-jest-cypress

Accelerated starter kit for building a quasar 17 app.
MIT License
47 stars 5 forks source link

Feathers #2

Closed borutjures closed 6 years ago

borutjures commented 6 years ago

This pull request contains a starter code for FeathersJS.

Backend

The server-feathers folder contains a backend. To start it:

cd server-feathers; npm install
npm start

Open another terminal window and add a test user:

curl 'http://localhost:3030/users/' -H 'Content-Type: application/json' --data-binary '{ "email": "feathers@example.com", "password": "secret" }'

Frontend

Open another terminal window and run quasar dev in the root folder.

Login with the test user (feathers@example.com).