Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 627 Bytes

README.md

File metadata and controls

43 lines (32 loc) · 627 Bytes

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

Installation / Setup

Create the .env file

HOST=0.0.0.0
PORT=3000
NODE_ENV=development
APP_URL=http://${HOST}:${PORT}

CACHE_VIEWS=false

APP_KEY=

DB_CONNECTION=mysql
DB_HOST=jobpostr-mysql
DB_PORT=3306
DB_USER=jobpostr
DB_PASSWORD=jobpostr
DB_DATABASE=jobpostr

SESSION_DRIVER=cookie
HASH_DRIVER=bcrypt

Execute docker compose

> docker-compose up -d