Bastien Sevajol 1ec7e30a6c Merge branch 'master' of https://gitea.bux.fr/bux/muzich | 6 years ago | |
---|---|---|
.debug | 12 years ago | |
app | 6 years ago | |
bin | 11 years ago | |
src | 6 years ago | |
web | 6 years ago | |
.gitignore | 6 years ago | |
.gitmodules | 13 years ago | |
LICENSE | 6 years ago | |
README.md | 6 years ago | |
catalog.xml | 12 years ago | |
composer.json | 6 years ago | |
composer.phar | 6 years ago | |
deps | 11 years ago |
Official repository is github.com/buxx/muzich
Muzi.ch is a website who permit to:
Muzi.ch source code is old and currently not maintened. The following howto have been tested on debian 9 in a docker container.
# OS dependencies
apt-get install git curl gnupg apt-transport-https lsb-release ca-certificates zip unzip
# wget
# Need php5.x
curl https://packages.sury.org/php/apt.gpg | apt-key add -
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list
apt-get update
apt-get install php5.6 php5.6-xml php5.6-gd libjpeg-dev php5.6-mongo php5.6-curl php5.6-mysql php5.6-mbstring
# Install muzi.ch
git clone https://gitea.bux.fr/bux/muzich.git
cd muzich
cp app/config/config.yml.template app/config/config.yml
cp app/config/parameters.yml.template app/config/parameters.yml
php composer.phar install
# Database
apt-get install mysql-server
service mysql start
mysql --execute "CREATE DATABASE muzich;"
mysql --execute "CREATE USER 'muzich'@'localhost';"
mysql --execute "GRANT ALL PRIVILEGES ON muzich.* To 'muzich'@'localhost' IDENTIFIED BY 'muzich';"
# First time, create database
php app/console doctrine:schema:create
# Start dev server
php app/console server:run
First time, execute:
# Get php unit 4
wget -O phpunit https://phar.phpunit.de/phpunit-4.phar
chmod +x phpunit
# Prepare database
mysql --execute "CREATE DATABASE muzich_test;"
mysql --execute "GRANT ALL PRIVILEGES ON muzich_test.* To 'muzich'@'localhost' IDENTIFIED BY 'muzich';"
./phpunit -c app src
Note: something is missing to make tests working.