test build container
All checks were successful
Docker Version Check / check-docker (push) Successful in 15s

This commit is contained in:
justin
2025-09-21 18:57:47 +02:00
commit 2edc38615e
38 changed files with 9999 additions and 0 deletions

24
config/hash.ts Normal file
View File

@@ -0,0 +1,24 @@
import { defineConfig, drivers } from '@adonisjs/core/hash'
const hashConfig = defineConfig({
default: 'scrypt',
list: {
scrypt: drivers.scrypt({
cost: 16384,
blockSize: 8,
parallelization: 1,
maxMemory: 33554432,
}),
},
})
export default hashConfig
/**
* Inferring types for the list of hashers you have configured
* in your application.
*/
declare module '@adonisjs/core/types' {
export interface HashersList extends InferHashers<typeof hashConfig> {}
}