Skip to content
This repository has been archived by the owner on Feb 10, 2025. It is now read-only.

Commit

Permalink
initial commit. plucking studio out of Adocasts site
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgobich committed Feb 11, 2023
0 parents commit 9b1e7b3
Show file tree
Hide file tree
Showing 400 changed files with 61,043 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .adonisrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"typescript": true,
"commands": [
"./commands",
"@adonisjs/core/build/commands/index.js",
"@adonisjs/repl/build/commands",
"@adonisjs/lucid/build/commands",
"@adonisjs/mail/build/commands",
"@adonisjs/bouncer/build/commands"
],
"exceptionHandlerNamespace": "App/Exceptions/Handler",
"aliases": {
"App": "app",
"Config": "config",
"Database": "database",
"Contracts": "contracts"
},
"preloads": [
"./start/routes",
"./start/kernel",
"./start/bouncer",
"./start/events",
"./start/globals"
],
"providers": [
"./providers/AppProvider",
"./providers/LogProvider",
"@adonisjs/core",
"@adonisjs/session",
"@adonisjs/view",
"@adonisjs/shield",
"@adonisjs/lucid",
"@adonisjs/auth",
"@adonisjs/lucid-slugify",
"@adonisjs/ally",
"@adonisjs/mail",
"@adonisjs/redis",
"@adonisjs/bouncer",
"./providers/QueryBuilderProvider",
"@adonisjs/attachment-lite",
"@adonisjs/drive-gcs",
"@japa/preset-adonis/TestsProvider",
"@adocasts.com/adonisjs-honeypot"
],
"metaFiles": [
{
"pattern": "public/**",
"reloadServer": false
},
{
"pattern": "resources/views/**/*.edge",
"reloadServer": false
}
],
"aceProviders": [
"@adonisjs/repl"
],
"tests": {
"suites": [
{
"name": "functional",
"files": [
"tests/functional/**/*.spec(.ts|.js)"
],
"timeout": 60000
}
]
}
}
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.json]
insert_final_newline = ignore

[*.md]
trim_trailing_whitespace = false
19 changes: 19 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
PORT=3333
HOST=0.0.0.0
NODE_ENV=development
APP_KEY=KNQpe35_HRymUTLiBG1moJ9aC8OyZ4ly
DRIVE_DISK=local
SESSION_DRIVER=cookie
CACHE_VIEWS=false
DB_CONNECTION=pg
PG_HOST=localhost
PG_PORT=5432
PG_USER=lucid
PG_PASSWORD=
PG_DB_NAME=lucid
REDIS_CONNECTION=local
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
REDIS_PASSWORD=
GCS_KEY_FILENAME=./google-cloud-key.json
GCS_BUCKET=bucketName
11 changes: 11 additions & 0 deletions .env.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
PORT=50259
NODE_ENV=test
ASSETS_DRIVER=fake
SESSION_DRIVER=memory

# DB_CONNECTION=pg
# PG_HOST=localhost
# PG_PORT=5432
# PG_USER=postgres
# PG_PASSWORD=password
# PG_DB_NAME=adocasts_test
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules
build
coverage
.vscode
.DS_STORE
.env
google-cloud-key.json
tmp
11 changes: 11 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"trailingComma": "none",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100,
"tabWidth": 2
}
Loading

0 comments on commit 9b1e7b3

Please sign in to comment.