Skip to content

Commit 1a950aa

Browse files
committed
initial commit
1 parent 72e6e60 commit 1a950aa

File tree

193 files changed

+26751
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+26751
-2
lines changed

.browserslistrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[*.{js,jsx,ts,tsx,vue}]
2+
indent_style = space
3+
indent_size = 2
4+
end_of_line = lf
5+
trim_trailing_whitespace = true
6+
insert_final_newline = true
7+
max_line_length = 100

.env.example

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
APP_NAME=Laravel
2+
APP_ENV=local
3+
APP_KEY=
4+
APP_DEBUG=true
5+
APP_URL=http://localhost
6+
7+
LOG_CHANNEL=stack
8+
LOG_LEVEL=debug
9+
10+
DB_CONNECTION=mysql
11+
DB_HOST=127.0.0.1
12+
DB_PORT=3306
13+
DB_DATABASE=laravel
14+
DB_USERNAME=root
15+
DB_PASSWORD=
16+
17+
BROADCAST_DRIVER=log
18+
CACHE_DRIVER=file
19+
FILESYSTEM_DRIVER=local
20+
QUEUE_CONNECTION=sync
21+
SESSION_DRIVER=file
22+
SESSION_LIFETIME=120
23+
24+
MEMCACHED_HOST=127.0.0.1
25+
26+
REDIS_HOST=127.0.0.1
27+
REDIS_PASSWORD=null
28+
REDIS_PORT=6379
29+
30+
MAIL_MAILER=smtp
31+
MAIL_HOST=mailhog
32+
MAIL_PORT=1025
33+
MAIL_USERNAME=null
34+
MAIL_PASSWORD=null
35+
MAIL_ENCRYPTION=null
36+
MAIL_FROM_ADDRESS=null
37+
MAIL_FROM_NAME="${APP_NAME}"
38+
39+
AWS_ACCESS_KEY_ID=
40+
AWS_SECRET_ACCESS_KEY=
41+
AWS_DEFAULT_REGION=us-east-1
42+
AWS_BUCKET=
43+
AWS_USE_PATH_STYLE_ENDPOINT=false
44+
45+
PUSHER_APP_ID=
46+
PUSHER_APP_KEY=
47+
PUSHER_APP_SECRET=
48+
PUSHER_APP_CLUSTER=mt1
49+
50+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
51+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

.eslintrc.js

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true,
5+
},
6+
extends: ['eslint:recommended', 'plugin:vue/recommended', '@vue/airbnb'],
7+
parserOptions: {
8+
parser: 'babel-eslint',
9+
},
10+
rules: {
11+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
12+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
13+
14+
// recommended by Vetur
15+
'vue/html-self-closing': 'off',
16+
17+
// Disable max-len
18+
'max-len': 'off',
19+
20+
// we don't want it
21+
semi: ['error', 'never'],
22+
23+
// add parens ony when required in arrow function
24+
'arrow-parens': ['error', 'as-needed'],
25+
26+
// add new line above comment
27+
'lines-around-comment': [
28+
'error',
29+
{
30+
beforeBlockComment: true,
31+
beforeLineComment: true,
32+
allowBlockStart: true,
33+
allowClassStart: true,
34+
allowObjectStart: true,
35+
allowArrayStart: true,
36+
},
37+
],
38+
39+
'linebreak-style': 'off',
40+
41+
// add new line above comment
42+
'newline-before-return': 'error',
43+
44+
// add new line below import
45+
'import/newline-after-import': ['error', { count: 1 }],
46+
47+
'import/extensions': [
48+
'error',
49+
'ignorePackages',
50+
{
51+
js: 'never',
52+
jsx: 'never',
53+
ts: 'never',
54+
tsx: 'never',
55+
},
56+
],
57+
58+
'global-require': 'off',
59+
},
60+
}

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
* text=auto
2+
*.css linguist-vendored
3+
*.scss linguist-vendored
4+
*.js linguist-vendored
5+
CHANGELOG.md export-ignore

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/node_modules
2+
/public/hot
3+
/public/js
4+
/public/images/
5+
/public/storage/
6+
/storage/*.key
7+
/vendor
8+
.env
9+
.env.backup
10+
.phpunit.result.cache
11+
docker-compose.override.yml
12+
Homestead.json
13+
Homestead.yaml
14+
npm-debug.log
15+
yarn-error.log
16+
/.idea
17+
/.vscode
18+
19+
.DS_Store
20+
node_modules
21+
/dist
22+
23+
24+
# local env files
25+
.env.local
26+
.env.*.local
27+
28+
# Log files
29+
npm-debug.log*
30+
yarn-debug.log*
31+
yarn-error.log*
32+
pnpm-debug.log*
33+
34+
# Editor directories and files
35+
.idea
36+
.vscode
37+
*.suo
38+
*.ntvs*
39+
*.njsproj
40+
*.sln
41+
*.sw?

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist
2+
node_modules

.prettierrc.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"arrowParens": "avoid",
3+
"bracketSpacing": true,
4+
"htmlWhitespaceSensitivity": "css",
5+
"insertPragma": false,
6+
"jsxBracketSameLine": false,
7+
"jsxSingleQuote": true,
8+
"printWidth": 120,
9+
"proseWrap": "preserve",
10+
"quoteProps": "as-needed",
11+
"requirePragma": false,
12+
"semi": false,
13+
"singleQuote": true,
14+
"tabWidth": 2,
15+
"trailingComma": "all",
16+
"useTabs": false,
17+
"vueIndentScriptAndStyle": false,
18+
"endOfLine": "lf"
19+
}

.styleci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
php:
2+
preset: laravel
3+
version: 8
4+
disabled:
5+
- no_unused_imports
6+
finder:
7+
not-name:
8+
- index.php
9+
- server.php
10+
js:
11+
finder:
12+
not-name:
13+
- webpack.mix.js
14+
css: true

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## V1.0.2 (2021-08-18)
2+
3+
* broken links updated in footer
4+
* "Basic Cards" page renamed to "Cards"
5+
* `README.md` updated
6+
7+
8+
## V1.0.1 (2021-08-13)
9+
10+
* Fixed missing fonts + branding updated
11+
* public path updated in `vue.config.js`
12+
* `README.md` updated
13+
14+
15+
# v1.0.0 (2021-08-13)
16+
17+
* Initial Release

0 commit comments

Comments
 (0)