You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-77Lines changed: 3 additions & 77 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,82 +4,8 @@ Welcome to Speedtest Tracker! Speedtest Tracker runs a speedtest check against O
4
4
5
5
This project replaces https://github.com/henrywhitaker3/Speedtest-Tracker as it looks like this project has been abandoned https://github.com/henrywhitaker3/Speedtest-Tracker/issues/1013.
6
6
7
+
### Docs
8
+
The docs can be found here https://docs.speedtest-tracker.dev to help you get started.
9
+
7
10
### Roadmap
8
11
To suggest features please use the roadmap. You can also follow development progress there as well: https://speedtest-tracker-roadmap.alexjustesen.dev/
9
-
10
-
11
-
### Deployment
12
-
13
-
#### Docker w/ sqlite
14
-
```bash
15
-
docker run -itd --name speedtest-tracker \
16
-
-p 8080:80 \
17
-
-e "PHP_POOL_NAME=speedtest-tracker_php" \
18
-
-e "DB_CONNECTION=sqlite" \
19
-
-e "DB_DATABASE=/app/database.sqlite" \
20
-
-v speedtest-tracker_app:/app \
21
-
speedtest-tracker
22
-
```
23
-
24
-
#### Docker w/ MariaDB or MySQL
25
-
```bash
26
-
docker run -itd --name speedtest-tracker \
27
-
-p 8080:80 \
28
-
-e "PHP_POOL_NAME=speedtest-tracker_php" \
29
-
-e "DB_CONNECTION=mysql" \
30
-
-e "DB_HOST=mysql" \
31
-
-e "DB_PORT=3306" \
32
-
-e "DB_DATABASE=speedtest_tracker" \
33
-
-e "DB_USERNAME=" \
34
-
-e "DB_PASSWORD=" \
35
-
speedtest-tracker
36
-
```
37
-
38
-
#### Docker Compose
39
-
```bash
40
-
# tbd...
41
-
```
42
-
43
-
44
-
### Build Docker Image
45
-
Want to build the image locally? Cool, just clone the repo and go right ahead...
46
-
47
-
```bash
48
-
docker build . -t speedtest-tracker
49
-
```
50
-
51
-
#### Runing the docker image
52
-
```bash
53
-
docker run -it -p 8080:80 \
54
-
speedtest-tracker
55
-
```
56
-
57
-
### Development
58
-
59
-
Since this project uses Laravel as our framework of choice we can take advantage of [Laravel Sail](https://laravel.com/docs/9.x/sail) for a development environment.
0 commit comments