Adonis Fullstack App Template
Go to file Use this template
Stephen Afam-Osemene c19c0d0880 fix(hook): use beforeSave over beforeCreate
Changed the hook from `beforeCreate` to `beforeSave`
With `beforeCreate` the password will not be hashed if it is changed later
2017-10-24 11:48:18 +05:30
app/Models fix(hook): use beforeSave over beforeCreate 2017-10-24 11:48:18 +05:30
config refactor(config): update config/app.js file 2017-10-03 22:16:20 +05:30
database feat(liniter): add standardjs 2017-08-20 22:41:05 +05:30
public feat(*) initial commit 2017-08-20 22:39:25 +05:30
resources/views feat(*) initial commit 2017-08-20 22:39:25 +05:30
start fix(kernel): add cors as server middleware 2017-09-03 22:12:05 +05:30
.editorconfig feat(*) initial commit 2017-08-20 22:39:25 +05:30
.env.example chore(env): update env file 2017-10-03 22:18:44 +05:30
.gitignore chore(gitignore): ignore sqlite db file 2017-10-03 22:18:15 +05:30
ace feat(*) initial commit 2017-08-20 22:39:25 +05:30
package.json Update package.json (#3) 2017-10-24 11:47:23 +05:30
README.md feat(*) initial commit 2017-08-20 22:39:25 +05:30
server.js feat(*) initial commit 2017-08-20 22:39:25 +05:30

Adonis fullstack application

This is the fullstack boilerplate for AdonisJs, it comes pre-configured with.

  1. Bodyparser
  2. Session
  3. Authentication
  4. Web security middleware
  5. CORS
  6. Edge template engine
  7. Lucid ORM
  8. Migrations and seeds

Setup

Use the adonis command to install the blueprint

adonis new yardstick

or manually clone the repo and then run npm install.

Migrations

Run the following command to run startup migrations.

adonis migration:run