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

De MochilaWiki
Ir para navegaçãoIr para pesquisar
 
(6 revisões intermediárias pelo mesmo usuário não estão sendo mostradas)
Linha 1: Linha 1:
  
 +
== Dependências ==
 +
<source lang="bash">
 +
apt install apache2 php libapache2-mod-php php-intl php-mbstring mysql-server php-mysql git-core unzip composer phpunit
 +
</source>
  
apt install apache2 php libapache2-mod-php php-intl php-mbstring mysql-server php-mysql git-core unzip
+
== Banco de dados ==
 
+
<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;
 
CREATE USER 'framadate'@'localhost' IDENTIFIED BY 'useastrongpassword';
 
CREATE USER 'framadate'@'localhost' IDENTIFIED BY 'useastrongpassword';
 
GRANT ALL PRIVILEGES ON `framadate`.* TO 'framadate'@'localhost';
 
GRANT ALL PRIVILEGES ON `framadate`.* TO 'framadate'@'localhost';
 +
</source>
  
 
+
== Instalando ==
 
+
<source lang="bash">
 
cd /var/www/html
 
cd /var/www/html
 
git clone https://framagit.org/framasoft/framadate/framadate.git
 
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/
 +
</source>
 +
 +
== Configuraçao ==
 +
cp app/inc/config.test.php app/inc/config.php
  
 +
coloque as informacoes do banco de dados e em const DB_DRIVER deixe pdo_mysql;
  
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://framagit.org/framasoft/framadate/framadate/wikis/Install/Configure
 +
* https://freedif.org/opensondage-find-the-best-timeslot-for-your-meeting
 +
* https://github.com/leblanc-simon/OpenSondage
 +
* https://github.com/YunoHost-Apps/opensondage_ynh
 
* https://freedif.org/opensondage-find-the-best-timeslot-for-your-meeting
 
* https://freedif.org/opensondage-find-the-best-timeslot-for-your-meeting

Edição atual tal como às 18h03min de 8 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/

Configuraçao

cp app/inc/config.test.php app/inc/config.php

coloque as informacoes do banco de dados e em const DB_DRIVER deixe pdo_mysql;

Referências