PyouPyou c'est un projet étudiant fait en 10 jours dans le cadre du cours de Framework PHP (Symfony) avec Gabriel Pillet à Lyon Ynov Campus. Développé par Antinéa GOUTARD et Julien SEIXAS
L'objectif était de recréer twitter en utilisant Symfony et à l'adapter à la structure des Ydays (jours réservés aux projets dans l'école).
To install the project you need first to :
sudo apt-get update
sudo apt-get install apt-transport-https lsb-release ca-certificates
sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php.list
sudo apt-get update
sudo apt-get install php7.2-cli php7.2-xml php7.2-curl zip
Follow official composer documentaiton
sudo apt-get install mariadb-server
sudo service mysql start
Replace #USER#
and #PASS#
bay your personnal username and password
sudo mysql -uroot
USE mysql;
DELETE FROM user WHERE user = "";
CREATE USER "#USER#"@"%" IDENTIFIED BY "#PASS#";
GRANT ALL PRIVILEGES ON *.* TO "#USER#"@"%";
FLUSH PRIVILEGES;
exit
Go where you want the project to be
clone git@github.com:tentacode-classroom/twitter-mais-pyoupyou.git
Go into the project folder that you just clone
composer i
php bin/console app:install