GitXplorerGitXplorer
H

crud-adonis-4

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Unverified
33f715b0c63cb7cf4b7e53faf94c7c1d09e8d146

yarn.lock

HHallexCosta committed 3 years ago
Unverified
4ddcf16b80ca470b795c9dc32703bfa3311bbaf7

fix test don't work create new user using the client

HHallexCosta committed 3 years ago
Unverified
52959dce927309431d396facf09ff0f820e3a0e1

add functional test to create user and return id

HHallexCosta committed 3 years ago
Unverified
3e26116c7ce1c90dcbf1a7a0dca05e1ba01f734c

add unit test to user

HHallexCosta committed 3 years ago
Unverified
6ad12abf178ae149d7b1218c581c00a5024affc3

add vow configs

HHallexCosta committed 3 years ago
Unverified
9f85be55035ffd534b9481e0612e99086e3de39f

use @adonisjs

HHallexCosta committed 3 years ago

README

The README file for this repository.

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. Postgre Database
  9. Migrations and seeds

Setup

Run the following command to install dependencies.

$ yarn

Run the following command to configure postgre database

$ cp .env-elephant-pg .env

Migrations

Run the following command to run startup migrations.

adonis migration:run

Docker and Docker Compose

docker

# build
$ docker build -d <container-name> <directory-from-dockerfile>

# run
$ docker run -t  3333:3333 <container-name>

# Example: docker run -t  3333:3333 crud-adonis

docker-compose:

$ docker compose up