Skip to content

Commit

Permalink
chore: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsANameToo committed May 17, 2023
0 parents commit 697e7c9
Show file tree
Hide file tree
Showing 1,105 changed files with 81,586 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root = true

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

[*.md]
trim_trailing_whitespace = false

[*.yml]
indent_size = 4
47 changes: 47 additions & 0 deletions .env.dusk
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
APP_NAME=Deployer
APP_ENV=dusk
APP_KEY=base64:PrEuajG9mhMu48SDXAKd8xrIMyujCQG+HbDV0U+MjRY=
APP_DEBUG=true
APP_URL=http://127.0.0.1:8000

LOG_CHANNEL=stack

DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=password

BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_MAILER=log
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"

SENTRY_LARAVEL_DSN=

RESPONSE_CACHE_ENABLED=false
RESPONSE_CACHE_DRIVER=redis

RECAPTCHA_SITE=
RECAPTCHA_SECRET=

TELESCOPE_ENABLED=false

DEMO_MODE_ENABLED=false
DEBUGBAR_ENABLED=false
ENABLE_COOKIECONSENT=false
56 changes: 56 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
APP_NAME=Deployer
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://deployer.test

LOG_CHANNEL=stack

DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=deployer
DB_USERNAME=deployer
DB_PASSWORD=

BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"

SENTRY_LARAVEL_DSN=

RESPONSE_CACHE_ENABLED=false
RESPONSE_CACHE_DRIVER=redis

RECAPTCHA_SITE=
RECAPTCHA_SECRET=

FAKEID_PRIME=1601895473
FAKEID_INVERSE=1212079313
FAKEID_RANDOM=360160081

GOOGLE_ANALYTICS_TRACKING_KEY=G-
# Optional, used to remove the google analytics cookies that are stored within
# the site domain, only neccesary if you are running the app in a subdomain
# `dev.deployer.io` should use `deployer.io`
# or `deployer.io.test` should use `io.test`
GOOGLE_ANALYTICS_COOKIE_DOMAIN=

ZENDESK_SUBDOMAIN=
ZENDESK_USERNAME=
ZENDESK_TOKEN=
19 changes: 19 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": ["eslint:recommended", "plugin:vue/essential"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"route": true,
"require": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["vue"],
"rules": {}
}
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* text=auto
*.css linguist-vendored
*.scss linguist-vendored
*.js linguist-vendored
CHANGELOG.md export-ignore
30 changes: 30 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!--
Thanks for your interest in the project. Bugs filed and PRs submitted are appreciated!
Please make sure you're familiar with and follow the instructions in the [contributing guidelines](https://ark.dev/docs/program-incentives/guidelines/contributing).
Please fill out the information below to expedite the review and (hopefully) merge of your pull request!
-->

## Summary

<!-- What changes are being made? -->

<!-- Why are these changes necessary? -->

<!-- How were these changes implemented? -->

## Checklist

<!-- Have you done all of these things (where applicable)? -->

- [ ] I checked my UI changes against the design and there are no notable differences
- [ ] I checked my UI changes for any responsiveness issues
- [ ] I checked my (code) changes for obvious issues, debug statements and commented code
- [ ] I opened a corresponding card on Clickup for any remaining TODOs in my code
- [ ] I added a short description on how to test this PR _(if necessary)_
- [ ] Documentation _(if necessary)_
- [ ] Tests _(if necessary)_
- [ ] Ready to be merged

<!-- Feel free to add additional comments. -->
23 changes: 23 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 1

labels:
- label: "bugfix"
title: "^fix.*"
- label: "feature"
title: "^feat.*"
- label: "build"
title: "^build.*"
- label: "chore"
title: "^chore.*"
- label: "ci"
title: "^ci.*"
- label: "docs"
title: "^docs.*"
- label: "style"
title: "^style.*"
- label: "refactor"
title: "^refactor.*"
- label: "performance"
title: "^perf.*"
- label: "test"
title: "^test.*"
Loading

0 comments on commit 697e7c9

Please sign in to comment.