Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.PHONY: install-dev

install-dev: composer.phar
./composer.phar install
ln --symbolic --no-dereference --force config-dev config

composer.phar:
wget https://getcomposer.org/composer.phar
curl -sS https://getcomposer.org/installer | php -- --version=2.2.18 --install-dir=. --filename=composer.phar
chmod u+x composer.phar
2 changes: 1 addition & 1 deletion config-dev/db-connection.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

return new PDO("mysql:host=localhost;dbname=sample", "sampleuser", "samplepass", [PDO::ATTR_PERSISTENT => true]);
return new PDO("mysql:host=db;dbname=sample", "sampleuser", "samplepass", [PDO::ATTR_PERSISTENT => true]);