Codiad est un éditeur de code IDE et de code source libre basé sur le Web. Dans ce tutoriel, je vais expliquer comment configurer Codiad sur Ubuntu.
Installer Apache
Étant donné que le projet est essentiellement un répertoire Web autonome, nous devrons configurer un serveur Web (Apache) et un traitement PHP afin de le faire fonctionner.
sudo apt-get install apache2
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt
Installer Git
Parce que Codiad est hébergé chez Github, nous devons installer Git afin d'obtenir les fichiers du projet.
sudo apt-get install git
Configuration de Codiad
Maintenant, nous devons obtenir les fichiers Codiad réels.
sudo rm -rfv /var/www/html/*
sudo git clone https://github.com/Codiad/Codiad /var/www/html/
sudo touch /var/www/html/config.php
sudo chown www-data:www-data -R /var/www/html/
sudo service apache2 restart
Terminé!
Ouvrez http://your-ip-address/
et terminez l'installation.