Mudanças entre as edições de "Framadate"

De MochilaWiki
Ir para navegaçãoIr para pesquisar
Linha 1: Linha 1:
  
 +
== Dependências ==
 
<source lang="bash">
 
<source lang="bash">
 
apt install apache2 php libapache2-mod-php php-intl php-mbstring mysql-server php-mysql git-core unzip composer phpunit
 
apt install apache2 php libapache2-mod-php php-intl php-mbstring mysql-server php-mysql git-core unzip composer phpunit
 
</source>
 
</source>
  
 +
== Banco de dados ==
 
<source lang="mysql">
 
<source lang="mysql">
 
CREATE DATABASE IF NOT EXISTS `framadate` DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
 
CREATE DATABASE IF NOT EXISTS `framadate` DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
Linha 10: Linha 12:
 
</source>
 
</source>
  
 +
== Instalando ==
 
<source lang="bash">
 
<source lang="bash">
 
cd /var/www/html
 
cd /var/www/html
Linha 21: Linha 24:
  
  
Referências
+
== Referências ==
 
* https://framagit.org/framasoft/framadate/framadate
 
* https://framagit.org/framasoft/framadate/framadate
 
* https://framagit.org/framasoft/framadate/framadate/wikis/Install/Requirements
 
* https://framagit.org/framasoft/framadate/framadate/wikis/Install/Requirements
 
* https://framagit.org/framasoft/framadate/framadate/wikis/Install/Database
 
* https://framagit.org/framasoft/framadate/framadate/wikis/Install/Database
 
* https://freedif.org/opensondage-find-the-best-timeslot-for-your-meeting
 
* https://freedif.org/opensondage-find-the-best-timeslot-for-your-meeting

Edição das 20h05min de 5 de julho de 2019

Dependências

apt install apache2 php libapache2-mod-php php-intl php-mbstring mysql-server php-mysql git-core unzip composer phpunit

Banco de dados

CREATE DATABASE IF NOT EXISTS `framadate` DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
CREATE USER 'framadate'@'localhost' IDENTIFIED BY 'useastrongpassword';
GRANT ALL PRIVILEGES ON `framadate`.* TO 'framadate'@'localhost';

Instalando

cd /var/www/html
git clone https://framagit.org/framasoft/framadate/framadate.git
cd framadate/
composer install
touch admin/stdout.log
chmod 600 admin/stdout.log
chown -R www-data: ../framadate/


Referências