Skip to content

Commit

Permalink
chore: bump adonis version
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmaialva33 committed Nov 24, 2024
1 parent d874ce0 commit 4b7e6bf
Show file tree
Hide file tree
Showing 134 changed files with 9,006 additions and 9,273 deletions.
35 changes: 0 additions & 35 deletions .adonisrc.json

This file was deleted.

1 change: 1 addition & 0 deletions .dockerignore
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
Expand Down
11 changes: 10 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# http://editorconfig.org

[*]
indent_style = space
indent_size = 2
Expand All @@ -7,7 +9,14 @@ trim_trailing_whitespace = true
insert_final_newline = true

[*.json]
insert_final_newline = ignore
insert_final_newline = unset

[**.min.js]
indent_style = unset
insert_final_newline = unset

[MakeFile]
indent_style = space

[*.md]
trim_trailing_whitespace = false
28 changes: 13 additions & 15 deletions .env.example
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
5 changes: 0 additions & 5 deletions .env.test

This file was deleted.

Binary file removed .github/assets/insomnia/Insomnia.json.zip
Binary file not shown.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
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
27 changes: 22 additions & 5 deletions .gitignore
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
1 change: 0 additions & 1 deletion .prettierignore

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ RUN yarn add pino-pretty
# Expose port to outside world
EXPOSE 3333
# Start server up
CMD [ "yarn", "docker" ]
CMD [ "node", "bin/server.js" ]
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Gabriel Maia <gabrielmaialva33@gmail.com> e <github.com/gabrielmaialva33>
Copyright (c) 2024 Gabriel Maia <gabrielmaialva33@gmail.com> e <github.com/gabrielmaialva33>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
16 changes: 0 additions & 16 deletions ace

This file was deleted.

Loading

0 comments on commit 4b7e6bf

Please sign in to comment.