Skip to content

Commit 93b9cee

Browse files
committed
First commit
1 parent 927d6ae commit 93b9cee

File tree

309 files changed

+109811
-20
lines changed

Some content is hidden

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

309 files changed

+109811
-20
lines changed

.gitignore

Lines changed: 49 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,49 @@
1-
vendor/
2-
node_modules/
3-
npm-debug.log
4-
5-
# Laravel 4 specific
6-
bootstrap/compiled.php
7-
app/storage/
8-
9-
# Laravel 5 & Lumen specific
10-
public/storage
11-
public/hot
12-
storage/*.key
13-
.env.*.php
14-
.env.php
15-
.env
16-
Homestead.yaml
17-
Homestead.json
18-
19-
# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
20-
.rocketeer/
1+
/composer.phar
2+
3+
!/public/index.php
4+
!/public/.htaccess
5+
!/public/web.config
6+
!/public/robots
7+
!/public/mix-manifest.json
8+
/laravel/public
9+
/laravel/node_modules
10+
/laravel/public/hot
11+
/laravel/public/storage
12+
/laravel/storage/*.key
13+
/laravel/vendor
14+
/laravel/.env
15+
/laravel/.env.backup
16+
/laravel/.phpunit.result.cache
17+
/laravel/Homestead.json
18+
/laravel/Homestead.yaml
19+
/laravel/npm-debug.log
20+
/laravel/yarn-error.log
21+
22+
23+
/coreui/.DS_Store
24+
/coreui/node_modules
25+
/coreui/dist
26+
/coreui/coverage
27+
28+
/coreui/tests/e2e/reports/
29+
/coreui/selenium-debug.log
30+
31+
# local env files
32+
/coreui/.env.local
33+
/coreui/.env.*.local
34+
35+
# Log files
36+
/coreui/npm-debug.log*
37+
/coreui/yarn-debug.log*
38+
/coreui/yarn-error.log*
39+
40+
# Editor directories and files
41+
/coreui/.idea
42+
/coreui/.vscode
43+
*.suo
44+
*.ntvs*
45+
*.njsproj
46+
*.sln
47+
*.sw*
48+
49+
ściąga.txt

coreui/.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
max_line_length = off
14+
trim_trailing_whitespace = false

coreui/.eslintrc.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
'extends': [
7+
'plugin:vue/essential',
8+
'eslint:recommended'
9+
],
10+
rules: {
11+
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
12+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
13+
},
14+
parserOptions: {
15+
parser: 'babel-eslint'
16+
}
17+
}

coreui/.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
/coverage
5+
6+
/tests/e2e/reports/
7+
selenium-debug.log
8+
9+
# local env files
10+
.env.local
11+
.env.*.local
12+
13+
# Log files
14+
npm-debug.log*
15+
yarn-debug.log*
16+
yarn-error.log*
17+
18+
# Editor directories and files
19+
.idea
20+
.vscode
21+
*.suo
22+
*.ntvs*
23+
*.njsproj
24+
*.sln
25+
*.sw*

coreui/.postcssrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
plugins: {
3+
autoprefixer: {}
4+
}
5+
}

0 commit comments

Comments
 (0)