-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d874ce0
commit 4b7e6bf
Showing
134 changed files
with
9,006 additions
and
9,273 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# Adonis default .gitignore ignores | ||
node_modules | ||
build | ||
dist | ||
coverage | ||
.vscode | ||
.DS_STORE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
# App | ||
TZ=UTC | ||
PORT=3333 | ||
HOST=0.0.0.0 | ||
HOST=localhost | ||
LOG_LEVEL=info | ||
APP_KEY= | ||
NODE_ENV=development | ||
APP_KEY=nNXnQq0_HbeqMI3V2iibFcpfb_Ci2fJN | ||
DRIVE_DISK=local | ||
DB_CONNECTION=pg | ||
|
||
# Database | ||
PG_HOST=localhost | ||
PG_PORT=5432 | ||
PG_USER=postgres | ||
PG_PASSWORD=postgres | ||
PG_DB_NAME=base_acl_db_development | ||
# Jwt | ||
ACCESS_TOKEN_SECRET=some-secret | ||
REFRESH_TOKEN_SECRET=some-secret | ||
|
||
# Redis | ||
REDIS_CONNECTION=local | ||
REDIS_HOST=127.0.0.1 | ||
REDIS_PORT=6379 | ||
REDIS_PASSWORD=redis | ||
# Database | ||
DB_HOST=127.0.0.1 | ||
DB_PORT=5432 | ||
DB_USER=root | ||
DB_PASSWORD=root | ||
DB_DATABASE=app |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: '/' | ||
schedule: | ||
interval: weekly | ||
day: wednesday | ||
open-pull-requests-limit: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,25 @@ | ||
# Dependencies and AdonisJS build | ||
node_modules | ||
build | ||
coverage | ||
.vscode | ||
.DS_STORE | ||
.env | ||
tmp | ||
.idea/ | ||
|
||
# Secrets | ||
.env | ||
.env.local | ||
.env.production.local | ||
.env.development.local | ||
|
||
# Frontend assets compiled code | ||
public/assets | ||
|
||
# Build tools specific | ||
npm-debug.log | ||
yarn-error.log | ||
|
||
# Editors specific | ||
.fleet | ||
.idea | ||
.vscode | ||
|
||
# Platform specific | ||
.DS_Store |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.