Skip to content

Commit dcece51

Browse files
committed
first
0 parents  commit dcece51

File tree

461 files changed

+69276
-0
lines changed

Some content is hidden

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

461 files changed

+69276
-0
lines changed

.env.example

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
APP_ENV=local
2+
APP_DEBUG=true
3+
APP_KEY=SomeRandomString
4+
APP_URL=http://localhost
5+
6+
DB_HOST=127.0.0.1
7+
DB_PORT=3306
8+
DB_DATABASE=homestead
9+
DB_USERNAME=homestead
10+
DB_PASSWORD=secret
11+
12+
CACHE_DRIVER=file
13+
SESSION_DRIVER=file
14+
QUEUE_DRIVER=sync
15+
16+
REDIS_HOST=127.0.0.1
17+
REDIS_PASSWORD=null
18+
REDIS_PORT=6379
19+
20+
MAIL_DRIVER=smtp
21+
MAIL_HOST=mailtrap.io
22+
MAIL_PORT=2525
23+
MAIL_USERNAME=null
24+
MAIL_PASSWORD=null
25+
MAIL_ENCRYPTION=null

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* text=auto
2+
*.css linguist-vendored
3+
*.less linguist-vendored

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/vendor
2+
/node_modules
3+
/public/storage
4+
Homestead.yaml
5+
Homestead.json
6+
.env

.idea/encodings.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/laravel.iml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/resagent.iml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/scopes/scope_settings.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)