Skip to content
This repository was archived by the owner on Mar 24, 2024. It is now read-only.

Commit df90e3c

Browse files
authored
Merge pull request #20 from lbausch/development
v3.0.3
2 parents 2f456d3 + dcccbce commit df90e3c

File tree

16 files changed

+231
-219
lines changed

16 files changed

+231
-219
lines changed

.env.example

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,17 @@ APP_TIMEZONE=Europe/Berlin
88

99
# Database for SQLgreyGUI
1010
# If you want to use a single database for both SQLgreyGUI and SQLgrey use only this config block
11-
DB_CONNECTION=mysql
11+
DB_CONNECTION=sqlgreygui
12+
DB_DRIVER=mysql
1213
DB_HOST=127.0.0.1
1314
DB_PORT=3306
1415
DB_DATABASE=sqlgrey
1516
DB_USERNAME=sqlgrey
1617
DB_PASSWORD=sqlgrey
1718

1819
# Uncomment the following lines if SQLgrey resides in a different database
19-
#SQLGREY_DB_CONNECTION=mysql
20+
#SQLGREY_DB_CONNECTION=sqlgrey
21+
SQLGREY_DB_DRIVER=mysql
2022
#SQLGREY_DB_HOST=null
2123
#SQLGREY_DB_PORT=3306
2224
#SQLGREY_DB_DATABASE=null

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ cache:
2020
before_install:
2121
- mysql -e "CREATE DATABASE IF NOT EXISTS testing;"
2222
- mysql -e "GRANT ALL ON testing.* to 'homestead'@'%' IDENTIFIED BY 'secret';"
23-
- mysql --database testing < ci/sqlgrey.sql
23+
- mysql --database testing < tests/fixtures/sqlgrey.sql
2424
- . $HOME/.nvm/nvm.sh
2525
- nvm install stable
2626
- nvm use stable
2727
- npm install -g yarn
2828

2929
install:
30-
- cp -nv ci/.env.testing .env
30+
- cp -nv tests/fixtures/.env.testing .env
3131
- composer install --no-interaction
3232
- php artisan key:generate
3333
- php artisan migrate --force

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ Web interface for [SQLgrey](http://sqlgrey.sourceforge.net/) using the [Laravel
1414

1515
## Documentation
1616
Visit the [official homepage](https://lbausch.github.io/SQLgreyGUI/) for requirements, installation instructions and further information.
17-

circle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ database:
1313
override:
1414
- mysql -uubuntu -e "CREATE DATABASE IF NOT EXISTS testing;"
1515
- mysql -uubuntu -e "GRANT ALL ON testing.* to 'homestead'@'%' IDENTIFIED BY 'secret';"
16-
- mysql -uubuntu --database testing < ci/sqlgrey.sql
16+
- mysql -uubuntu --database testing < tests/fixtures/sqlgrey.sql
1717

1818
general:
1919
artifacts:
@@ -29,7 +29,7 @@ test:
2929
pre:
3030
- "./vendor/laravel/dusk/bin/chromedriver-linux":
3131
background: true
32-
- cp ci/.env.testing .env
32+
- cp tests/fixtures/.env.testing .env
3333
- php artisan key:generate
3434
- php artisan migrate
3535
- php artisan passport:install

composer.lock

Lines changed: 45 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)