Compare commits

..

No commits in common. "7f7d6a6a73e16c85eebe4f2d0a29ccecab31cd5b" and "2d19ae513e753a640089564c537f4688f2918364" have entirely different histories.

4 changed files with 6 additions and 34 deletions

View File

@ -16,7 +16,7 @@ jobs:
matrix:
php-version: [ '8.3' ]
node-version: ['20.x']
composer-version: ['2.7.6']
composer-version: ['2.6.6']
steps:
- uses: actions/checkout@v4
@ -25,8 +25,8 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
ini-values: pcre.jit=0
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, php${{ matrix.php-version }}-gd
ini-values: opcache.enable_cli=1, extension=gd
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite
tools: composer:${{ matrix.composer-version }}
env:

5
.gitignore vendored
View File

@ -22,8 +22,5 @@ yarn-error.log
/.phpstorm.meta.php
/_ide_helper.php
/_ide_helper_models.php
/public/img/icons/play-button.png
/tabit.sql
/docker
/docker/db
/docker/db/data

View File

@ -35,15 +35,11 @@ class DatabaseSeeder extends Seeder
// $this->call([
// AdmissionSeeder::class,
// DocumentSeeder::class,
// ]);
// $this->call([
// FeedbackStatusSeeder::class,
// FeedbackSeeder::class,
// ]);
$this->call([
NewsSeeder::class,
FeedbackStatusSeeder::class,
FeedbackSeeder::class,
]);
}
}

View File

@ -1,21 +0,0 @@
version: '3'
services:
# MySQL
db:
container_name: mysql8
image: mysql:8.0
command: mysqld --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: laravel
# MYSQL_USER: laravel
# MYSQL_PASSWORD: laravellaravel
# MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
ports:
- '3306:3306'
volumes:
- './docker/db/data:/var/lib/mysql'
- './docker/db/my.cnf:/etc/mysql/conf.d/my.cnf'
- './docker/db/sql:/docker-entrypoint-initdb.d'
- './docker/tabit:/home'