Adonis Fullstack App Template
Go to file Use this template
Vince van Noort 4a5bda0737 fix(config): use DB_DATABASE env var of static sqlite filename
* SQLite should reference the filename from the .env file instead of development.sqlite

* Update database.js
2018-02-09 17:05:39 +05:30
app/Models fix(hooks): use beforeCreate over beforeSave 2018-02-09 17:05:39 +05:30
config fix(config): use DB_DATABASE env var of static sqlite filename 2018-02-09 17:05:39 +05:30
database FIX: Added type table 2017-10-29 20:24:28 +02:00
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(gitignore,env): structure and add comments 2017-10-30 13:13:29 +05:30
.gitignore chore(gitignore,env): structure and add comments 2017-10-30 13:13:29 +05:30
ace feat(*) initial commit 2017-08-20 22:39:25 +05:30
package.json chore(package): update dependencies 2017-11-28 20:54:49 +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