Skip to content

alesima/jobpostr

 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 92.8%
  • CSS 4.4%
  • Dockerfile 1.8%
  • Shell 1.0%