Skip to content

Commit d3694cc

Browse files
committed
hidden files
hidden files
1 parent 35abe09 commit d3694cc

File tree

6 files changed

+135
-0
lines changed

6 files changed

+135
-0
lines changed

.dockerignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Include any files or directories that you don't want to be copied to your
2+
# container here (e.g., local build artifacts, temporary files, etc.).
3+
#
4+
# For more help, visit the .dockerignore file reference guide at
5+
# https://docs.docker.com/go/build-context-dockerignore/
6+
7+
**/.classpath
8+
**/.dockerignore
9+
**/.env
10+
**/.git
11+
**/.gitignore
12+
**/.gitattributes
13+
**/.project
14+
**/.settings
15+
**/.toolstarget
16+
**/.vs
17+
**/.vscode
18+
**/.next
19+
**/.cache
20+
**/*.*proj.user
21+
**/*.dbmdl
22+
**/*.jfm
23+
**/charts
24+
**/docker-compose*
25+
**/compose.y*ml
26+
**/compose.*.y*ml
27+
!**/composer.json
28+
!**/composer.lock
29+
**/Dockerfile*
30+
**/node_modules
31+
**/npm-debug.log
32+
**/obj
33+
**/secrets.dev.yaml
34+
**/values.dev.yaml
35+
**/vendor
36+
**/.DS_Store
37+
.editorconfig
38+
.env.example
39+
LICENSE
40+
README.md
41+
42+
# Ignore development-related files and directories
43+
# For development environment, we will use mount bind to mount the source code to the container
44+
# So we don't need to copy the source code to the container for development
45+
tests/
46+
phpunit.xml
47+
phpunit.xml.dist

.editorconfig

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

.env.example

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
APP_NAME=Laravel
2+
APP_ENV=local
3+
APP_KEY=
4+
APP_DEBUG=true
5+
APP_URL=http://localhost
6+
7+
#Prefix for reverse proxy of MikroTik RouterOS npk downloads
8+
URL_PREFIX="https://genieacs-fs.mycompany.com:7567/routeros"
9+
10+
LOG_CHANNEL=stack
11+
12+
DB_CONNECTION=sqlite
13+
DB_DATABASE=storage/database.sqlite
14+
15+
BROADCAST_DRIVER=log
16+
CACHE_DRIVER=file
17+
QUEUE_CONNECTION=sync
18+
SESSION_DRIVER=file
19+
SESSION_LIFETIME=120
20+
21+
REDIS_HOST=127.0.0.1
22+
REDIS_PASSWORD=null
23+
REDIS_PORT=6379
24+
25+
MAIL_DRIVER=smtp
26+
MAIL_HOST=smtp.mailtrap.io
27+
MAIL_PORT=2525
28+
MAIL_USERNAME=null
29+
MAIL_PASSWORD=null
30+
MAIL_ENCRYPTION=null
31+
32+
AWS_ACCESS_KEY_ID=
33+
AWS_SECRET_ACCESS_KEY=
34+
AWS_DEFAULT_REGION=us-east-1
35+
AWS_BUCKET=
36+
37+
PUSHER_APP_ID=
38+
PUSHER_APP_KEY=
39+
PUSHER_APP_SECRET=
40+
PUSHER_APP_CLUSTER=mt1
41+
42+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
43+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

.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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/node_modules
2+
/public/hot
3+
/public/storage
4+
/storage/*.key
5+
/vendor
6+
.env
7+
.env.backup
8+
.phpunit.result.cache
9+
Homestead.json
10+
Homestead.yaml
11+
npm-debug.log
12+
yarn-error.log

.styleci.yml

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

0 commit comments

Comments
 (0)