-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from Dolu89/v3
chore: version 3
- Loading branch information
Showing
85 changed files
with
12,781 additions
and
10,230 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,14 +1,9 @@ | ||
PORT=3333 | ||
HOST=0.0.0.0 | ||
APP_URL=http://localhost:3333 | ||
APP_URL=https://bips.local | ||
NODE_ENV=development | ||
APP_KEY=3lHJjxzBGtaMR7OudwgF0BqLwBZvOxqI | ||
SESSION_DRIVER=cookie | ||
PORT=7894 | ||
APP_KEY= | ||
HOST=127.0.0.1 | ||
LOG_LEVEL=debug | ||
CACHE_VIEWS=false | ||
GITHUB_TOKEN=ghp_ | ||
REDIS_CONNECTION=local | ||
REDIS_HOST=127.0.0.1 | ||
REDIS_PORT=6379 | ||
REDIS_PASSWORD= | ||
GM2HTML_URL=http://gm2html.local | ||
UPDATE_KEY= | ||
GITHUB_API_KEY= | ||
CACHE_FOLDER=./cache |
This file was deleted.
Oops, something went wrong.
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,8 +1,6 @@ | ||
node_modules | ||
build | ||
coverage | ||
.vscode | ||
.DS_STORE | ||
node_modules/ | ||
.env | ||
tmp | ||
public/sitemap* | ||
cache | ||
public/sitemap*.* | ||
**/.DS_Store | ||
build |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| JavaScript entrypoint for running ace commands | ||
|-------------------------------------------------------------------------- | ||
| | ||
| Since, we cannot run TypeScript source code using "node" binary, we need | ||
| a JavaScript entrypoint to run ace commands. | ||
| | ||
| This file registers the "ts-node/esm" hook with the Node.js module system | ||
| and then imports the "bin/console.ts" file. | ||
| | ||
*/ | ||
|
||
/** | ||
* Register hook to process TypeScript files using ts-node | ||
*/ | ||
import { register } from 'node:module' | ||
register('ts-node/esm', import.meta.url) | ||
|
||
/** | ||
* Import ace console entrypoint | ||
*/ | ||
await import('./bin/console.js') |
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,88 @@ | ||
import { defineConfig } from '@adonisjs/core/app' | ||
|
||
export default defineConfig({ | ||
/* | ||
|-------------------------------------------------------------------------- | ||
| Commands | ||
|-------------------------------------------------------------------------- | ||
| | ||
| List of ace commands to register from packages. The application commands | ||
| will be scanned automatically from the "./commands" directory. | ||
| | ||
*/ | ||
commands: [() => import('@adonisjs/core/commands'), () => import('@adonisjs/cache/commands')], | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Service providers | ||
|-------------------------------------------------------------------------- | ||
| | ||
| List of service providers to import and register when booting the | ||
| application | ||
| | ||
*/ | ||
providers: [ | ||
() => import('@adonisjs/core/providers/app_provider'), | ||
() => import('@adonisjs/core/providers/hash_provider'), | ||
{ | ||
file: () => import('@adonisjs/core/providers/repl_provider'), | ||
environment: ['repl', 'test'], | ||
}, | ||
() => import('@adonisjs/core/providers/edge_provider'), | ||
() => import('@adonisjs/vite/vite_provider'), | ||
() => import('@adonisjs/core/providers/vinejs_provider'), | ||
() => import('#providers/app_provider'), | ||
() => import('@adonisjs/static/static_provider'), | ||
() => import('@adonisjs/cache/cache_provider') | ||
], | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Preloads | ||
|-------------------------------------------------------------------------- | ||
| | ||
| List of modules to import before starting the application. | ||
| | ||
*/ | ||
preloads: [ | ||
() => import('#start/routes'), | ||
() => import('#start/kernel'), | ||
() => import('#start/jobs'), | ||
() => import('#start/view'), | ||
], | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Tests | ||
|-------------------------------------------------------------------------- | ||
| | ||
| List of test suites to organize tests by their type. Feel free to remove | ||
| and add additional suites. | ||
| | ||
*/ | ||
tests: { | ||
suites: [ | ||
{ | ||
files: ['tests/unit/**/*.spec(.ts|.js)'], | ||
name: 'unit', | ||
timeout: 2000, | ||
}, | ||
{ | ||
files: ['tests/functional/**/*.spec(.ts|.js)'], | ||
name: 'functional', | ||
timeout: 30000, | ||
}, | ||
], | ||
forceExit: false, | ||
}, | ||
metaFiles: [ | ||
{ | ||
pattern: 'resources/views/**/*.edge', | ||
reloadServer: false, | ||
}, | ||
{ | ||
pattern: 'public/**', | ||
reloadServer: false, | ||
}, | ||
], | ||
}) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.