Skip to content

Commit e2ccb73

Browse files
committed
Миграция на laravel
1 parent b9e81fe commit e2ccb73

File tree

258 files changed

+52231
-28371
lines changed

Some content is hidden

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

258 files changed

+52231
-28371
lines changed

.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,yaml}]
15+
indent_size = 2

.env.example

Lines changed: 37 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,49 @@
1-
APP_ENV=dev
1+
APP_NAME=Rotor
2+
APP_ENV=local
3+
APP_KEY=
24
APP_DEBUG=true
3-
APP_KEY=SomeRandomString
5+
APP_URL=http://localhost
46

5-
TIMEZONE=Europe/Moscow
7+
LOG_CHANNEL=stack
8+
LOG_LEVEL=debug
69

7-
SITE_ADMIN=admin
8-
SITE_EMAIL=admin@visavi.net
9-
SITE_URL=https://visavi.net
10-
11-
DB_DRIVER=mysql
12-
DB_HOST=localhost
10+
DB_CONNECTION=mysql
11+
DB_HOST=127.0.0.1
1312
DB_PORT=3306
14-
DB_DATABASE=rotor
13+
DB_DATABASE=laravel
1514
DB_USERNAME=root
16-
DB_PASSWORD=root
17-
DB_ENGINE=MyISAM
18-
DB_CHARSET=utf8mb4
19-
DB_COLLATION=utf8mb4_unicode_ci
20-
DB_PREFIX=null
21-
22-
MAIL_DRIVER=sendmail
23-
MAIL_HOST=smtp.mailtrap.io
24-
MAIL_PORT=2525
25-
MAIL_USERNAME=null
26-
MAIL_PASSWORD=null
27-
MAIL_ENCRYPTION=null
28-
MAIL_PATH=null
29-
30-
FFMPEG_ENABLED=false
31-
FFMPEG_PATH=/usr/bin/ffmpeg
32-
FFPROBE_PATH=/usr/bin/ffprobe
33-
FFMPEG_TIMEOUT=3600
34-
FFMPEG_THREADS=4
15+
DB_PASSWORD=
3516

17+
BROADCAST_DRIVER=log
3618
CACHE_DRIVER=file
19+
QUEUE_CONNECTION=sync
20+
SESSION_DRIVER=file
21+
SESSION_LIFETIME=120
22+
23+
MEMCACHED_HOST=127.0.0.1
3724

3825
REDIS_HOST=127.0.0.1
3926
REDIS_PASSWORD=null
4027
REDIS_PORT=6379
4128

42-
MEMCACHED_HOST=127.0.0.1
43-
MEMCACHED_PORT=11211
29+
MAIL_MAILER=smtp
30+
MAIL_HOST=mailhog
31+
MAIL_PORT=1025
32+
MAIL_USERNAME=null
33+
MAIL_PASSWORD=null
34+
MAIL_ENCRYPTION=null
35+
MAIL_FROM_ADDRESS=null
36+
MAIL_FROM_NAME="${APP_NAME}"
37+
38+
AWS_ACCESS_KEY_ID=
39+
AWS_SECRET_ACCESS_KEY=
40+
AWS_DEFAULT_REGION=us-east-1
41+
AWS_BUCKET=
42+
43+
PUSHER_APP_ID=
44+
PUSHER_APP_KEY=
45+
PUSHER_APP_SECRET=
46+
PUSHER_APP_CLUSTER=mt1
47+
48+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
49+
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: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,21 @@
1717
/public/uploads/thumbnails
1818
/modules
1919
/node_modules
20+
21+
/public/hot
22+
/public/storage
23+
/storage/*.key
24+
2025
/vendor
2126
/upgrade
2227
mix-manifest.json
2328
composer.phar
2429
.env
25-
.idea/
30+
31+
.env.backup
32+
.phpunit.result.cache
33+
docker-compose.override.yml
34+
Homestead.json
35+
Homestead.yaml
36+
npm-debug.log
37+
yarn-error.log

.idea/commandlinetools/Laravel_23_05_2021__22_11.xml

Lines changed: 3157 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/commandlinetools/schemas/frameworkDescriptionVersion1.1.4.xsd

Lines changed: 47 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 135 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/phpunit.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)