Skip to content

Commit 185b4b1

Browse files
authored
Merge branch 'main' into implement-an-api
2 parents 541a883 + dcdcd65 commit 185b4b1

File tree

90 files changed

+1761
-2612
lines changed

Some content is hidden

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

90 files changed

+1761
-2612
lines changed

.dockerignore

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

.env.example

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,18 @@ LOG_STACK=single
1919
LOG_DEPRECATIONS_CHANNEL=null
2020
LOG_LEVEL=debug
2121

22-
DB_CONNECTION=mysql
23-
DB_HOST=127.0.0.1
24-
DB_PORT=3306
25-
DB_DATABASE=speedtest_tracker
26-
DB_USERNAME=
27-
DB_PASSWORD=
22+
DB_CONNECTION=sqlite
23+
# DB_HOST=127.0.0.1
24+
# DB_PORT=3306
25+
# DB_DATABASE=speedtest_tracker
26+
# DB_USERNAME=
27+
# DB_PASSWORD=
2828

2929
BROADCAST_CONNECTION=log
3030
CACHE_STORE=database
3131
FILESYSTEM_DISK=local
3232
QUEUE_CONNECTION=database
33+
3334
SESSION_DRIVER=database
3435
SESSION_LIFETIME=120
3536
SESSION_ENCRYPT=false
@@ -44,5 +45,3 @@ MAIL_PASSWORD=null
4445
MAIL_ENCRYPTION=null
4546
MAIL_FROM_ADDRESS="[email protected]"
4647
MAIL_FROM_NAME="Speedtest Tracker"
47-
48-
TELEGRAM_BOT_TOKEN=null

.env.production

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

.github/workflows/cd.yml

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

.github/workflows/ci.yml

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

.github/workflows/tests.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -17,43 +17,43 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: "duster"
20-
uses: tighten/duster-action@v2
20+
uses: tighten/duster-action@v3
2121
with:
2222
args: lint --using=pint -v
2323

24-
test:
25-
needs: [lint] # needs lint job to pass first
26-
runs-on: ubuntu-22.04
27-
steps:
28-
- name: Checkout
29-
uses: actions/checkout@v4
24+
# test:
25+
# needs: [lint] # needs lint job to pass first
26+
# runs-on: ubuntu-22.04
27+
# steps:
28+
# - name: Checkout
29+
# uses: actions/checkout@v4
3030

31-
- name: Setup PHP
32-
uses: shivammathur/setup-php@v2
33-
with:
34-
php-version: '8.3'
35-
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
36-
coverage: none
31+
# - name: Setup PHP
32+
# uses: shivammathur/setup-php@v2
33+
# with:
34+
# php-version: '8.3'
35+
# extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
36+
# coverage: none
3737

38-
- name: Prepare the environment
39-
run: cp .env.testing .env
38+
# - name: Prepare the environment
39+
# run: cp .env.testing .env
4040

41-
- name: Install composer dependencies
42-
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress
41+
# - name: Install composer dependencies
42+
# run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress
4343

44-
- name: Install npm dependencies and build assets
45-
run: npm ci && npm run build
44+
# - name: Install npm dependencies and build assets
45+
# run: npm ci && npm run build
4646

47-
- name: Generate an application key
48-
run: php artisan key:generate
47+
# - name: Generate an application key
48+
# run: php artisan key:generate
4949

50-
- name: Directory Permissions
51-
run: chmod -R 777 storage bootstrap/cache
50+
# - name: Directory Permissions
51+
# run: chmod -R 777 storage bootstrap/cache
5252

53-
- name: Create SQLite database
54-
run: |
55-
mkdir -p database
56-
touch database/database.sqlite
53+
# - name: Create SQLite database
54+
# run: |
55+
# mkdir -p database
56+
# touch database/database.sqlite
5757

58-
- name: Run tests
59-
run: php artisan test
58+
# - name: Run tests
59+
# run: php artisan test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/.phpunit.cache
22
/node_modules
3+
/public/build
34
/public/hot
45
/public/storage
56
/storage/*.key

0 commit comments

Comments
 (0)