Skip to content

Commit bb4d08e

Browse files
committed
feat:update-readme Co-authored-by: kooky5831 <kookyzhang99@gmail.com>
1 parent 1b7da7f commit bb4d08e

File tree

202 files changed

+27475
-30
lines changed

Some content is hidden

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

202 files changed

+27475
-30
lines changed

.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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
16+
17+
[docker-compose.yml]
18+
indent_size = 4

.env.example

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
@ -1,58 +0,0 @@
2+
APP_NAME=Laravel
3+
APP_ENV=local
4+
APP_KEY=
5+
APP_DEBUG=true
6+
APP_URL=http://localhost
7+
8+
IS_DEMO=false
9+
10+
LOG_CHANNEL=stack
11+
LOG_DEPRECATIONS_CHANNEL=null
12+
LOG_LEVEL=debug
13+
14+
DB_CONNECTION=mysql
15+
DB_HOST=127.0.0.1
16+
DB_PORT=3306
17+
DB_DATABASE=soft_ui_dashboard_tall_free
18+
DB_USERNAME=root
19+
DB_PASSWORD=
20+
21+
BROADCAST_DRIVER=log
22+
CACHE_DRIVER=file
23+
FILESYSTEM_DISK=local
24+
QUEUE_CONNECTION=sync
25+
SESSION_DRIVER=file
26+
SESSION_LIFETIME=120
27+
28+
MEMCACHED_HOST=127.0.0.1
29+
30+
REDIS_HOST=127.0.0.1
31+
REDIS_PASSWORD=null
32+
REDIS_PORT=6379
33+
34+
MAIL_MAILER=smtp
35+
MAIL_HOST=mailhog
36+
MAIL_PORT=1025
37+
MAIL_USERNAME=null
38+
MAIL_PASSWORD=null
39+
MAIL_ENCRYPTION=null
40+
MAIL_FROM_ADDRESS="hello@example.com"
41+
MAIL_FROM_NAME="${APP_NAME}"
42+
43+
AWS_ACCESS_KEY_ID=
44+
AWS_SECRET_ACCESS_KEY=
45+
AWS_DEFAULT_REGION=us-east-1
46+
AWS_BUCKET=
47+
AWS_USE_PATH_STYLE_ENDPOINT=false
48+
49+
PUSHER_APP_ID=
50+
PUSHER_APP_KEY=
51+
PUSHER_APP_SECRET=
52+
PUSHER_HOST=
53+
PUSHER_PORT=443
54+
PUSHER_SCHEME=https
55+
PUSHER_APP_CLUSTER=mt1
56+
57+
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
58+
VITE_PUSHER_HOST="${PUSHER_HOST}"
59+
VITE_PUSHER_PORT="${PUSHER_PORT}"
60+
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
61+
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

.gitattributes

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
* text=auto
2+
3+
*.blade.php diff=html
4+
*.css diff=css
5+
*.html diff=html
6+
*.md diff=markdown
7+
*.php diff=php
8+
9+
/.github export-ignore
10+
CHANGELOG.md export-ignore

.gitignore

+13-28
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,15 @@
1-
/vendor/
2-
node_modules/
3-
npm-debug.log
4-
yarn-error.log
5-
6-
# Laravel 4 specific
7-
bootstrap/compiled.php
8-
app/storage/
9-
10-
# Laravel 5 & Lumen specific
11-
public/storage
12-
public/hot
13-
14-
# Laravel 5 & Lumen specific with changed public path
15-
public_html/storage
16-
public_html/hot
17-
18-
storage/*.key
19-
.env
20-
Homestead.yaml
21-
Homestead.json
22-
/.vagrant
23-
.phpunit.result.cache
24-
1+
/node_modules
252
/public/build
26-
/storage/pail
3+
/public/hot
4+
/public/storage
5+
/storage/*.key
6+
/vendor
7+
.env
278
.env.backup
28-
.env.production
29-
.phpactor.json
30-
auth.json
9+
.phpunit.result.cache
10+
Homestead.json
11+
Homestead.yaml
12+
npm-debug.log
13+
yarn-error.log
14+
/.idea
15+
/.vscode

.styleci.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
php:
2+
preset: laravel
3+
disabled:
4+
- no_unused_imports
5+
finder:
6+
not-name:
7+
- index.php
8+
js:
9+
finder:
10+
not-name:
11+
- vite.config.js
12+
css: true

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Change Log
2+
All notable changes to `Soft UI Dashboard TALL` will be documented in this file.
3+
4+
## [1.0.0]
5+
### Original Release
6+
- Soft UI Dashboard TALL Free
7+
- Login
8+
- Register
9+
- Forgot password
10+
- Profile edit
11+
12+
## [1.0.1]
13+
### Added
14+
- Tailwind CSS
15+
16+
## [1.1.0]
17+
### Update to Laravel 11.x

ISSUE_TEMPLATE.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Prerequisites
2+
3+
Please answer the following questions for yourself before submitting an issue.
4+
5+
- [ ] I am running the latest version
6+
- [ ] I checked the documentation and found no answer
7+
- [ ] I checked to make sure that this issue has not already been filed
8+
- [ ] I'm reporting the issue to the correct repository (for multi-repository projects)
9+
10+
# Expected Behavior
11+
12+
Please describe the behavior you are expecting
13+
14+
# Current Behavior
15+
16+
What is the current behavior?
17+
18+
# Failure Information (for bugs)
19+
20+
Please help provide information about the failure if this is a bug. If it is not a bug, please remove the rest of this template.
21+
22+
## Steps to Reproduce
23+
24+
Please provide detailed steps for reproducing the issue.
25+
26+
1. step 1
27+
2. step 2
28+
3. you get it...
29+
30+
## Context
31+
32+
Please provide any relevant information about your setup. This is important in case the issue is not reproducible except for under certain conditions.
33+
34+
* Device:
35+
* Operating System:
36+
* Browser and Version:
37+
38+
## Failure Logs
39+
40+
Please include any relevant log snippets or files here.

0 commit comments

Comments
 (0)