Skip to content

Commit 804a32d

Browse files
committed
2 parents 3e9b796 + 98cf390 commit 804a32d

File tree

145 files changed

+11409
-4419
lines changed

Some content is hidden

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

145 files changed

+11409
-4419
lines changed

.dockerignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/.git
2+
/.github
13
/.idea
24
/.vscode
35
/docker/8.1
@@ -9,11 +11,11 @@
911
/storage/logs
1012
/vendor
1113
_ide_helper.php
14+
.editorconfig
1215
.env
1316
.env.backup
1417
.phpstorm.meta.php
1518
.phpunit.result.cache
16-
config.yml
1719
auth.json
1820
docker-compose.yml
1921
Homestead.json

.env.docker

Lines changed: 0 additions & 39 deletions
This file was deleted.

.env.example

Lines changed: 13 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,28 @@
11
APP_NAME="Speedtest Tracker"
2-
APP_ENV=local
2+
APP_ENV=production
33
APP_KEY=
4-
APP_DEBUG=true
4+
APP_DEBUG=false
55
APP_URL=http://localhost
6+
FORCE_HTTPS=false
67

7-
LOG_CHANNEL=stack
8+
LOG_CHANNEL=stderr
89
LOG_DEPRECATIONS_CHANNEL=null
910
LOG_LEVEL=debug
1011

11-
DB_CONNECTION=mysql
12-
DB_HOST=127.0.0.1
13-
DB_PORT=3306
14-
DB_DATABASE=speedtest_tracker
15-
DB_USERNAME=root
16-
DB_PASSWORD=
12+
DB_CONNECTION=sqlite
13+
# DB_HOST=127.0.0.1
14+
# DB_PORT=3306
15+
# DB_DATABASE=speedtest_tracker
16+
# DB_USERNAME=root
17+
# DB_PASSWORD=
1718

1819
BROADCAST_DRIVER=log
19-
CACHE_DRIVER=file
20+
CACHE_DRIVER=database
2021
FILESYSTEM_DISK=local
2122
QUEUE_CONNECTION=database
22-
SESSION_DRIVER=file
23+
SESSION_DRIVER=database
2324
SESSION_LIFETIME=120
2425

25-
MEMCACHED_HOST=127.0.0.1
26-
27-
REDIS_HOST=127.0.0.1
28-
REDIS_PASSWORD=null
29-
REDIS_PORT=6379
30-
3126
MAIL_MAILER=smtp
3227
MAIL_HOST=mailhog
3328
MAIL_PORT=1025
@@ -43,16 +38,4 @@ AWS_DEFAULT_REGION=us-east-1
4338
AWS_BUCKET=
4439
AWS_USE_PATH_STYLE_ENDPOINT=false
4540

46-
PUSHER_APP_ID=
47-
PUSHER_APP_KEY=
48-
PUSHER_APP_SECRET=
49-
PUSHER_HOST=
50-
PUSHER_PORT=443
51-
PUSHER_SCHEME=https
52-
PUSHER_APP_CLUSTER=mt1
53-
54-
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
55-
VITE_PUSHER_HOST="${PUSHER_HOST}"
56-
VITE_PUSHER_PORT="${PUSHER_PORT}"
57-
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
58-
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
41+
TELEGRAM_BOT_TOKEN=

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
github: [alexjustesen]
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Create a bug report to help me improve something
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Environment (please complete the following information):**
24+
- OS: [e.g. Ubuntu]
25+
- Architecture: [e.g. arm64, amd64]
26+
- Browser [e.g. chrome, safari]
27+
- Version [e.g. v1]
28+
29+
**Screenshots**
30+
If applicable, add screenshots to help explain your problem.
31+
32+
**Logs**
33+
If applicable, check the logs for any error that might of occurred.
34+
35+
**Additional context**
36+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "docker"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
- package-ecosystem: "composer"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"
174 KB
Loading
107 KB
Loading
623 KB
Loading

0 commit comments

Comments
 (0)