Skip to content

Se realizan cambios necesarios para la instalacion y funcionamiento d… #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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]);