Skip to content
Snippets Groups Projects
Commit 3709ad9e authored by basdorea's avatar basdorea
Browse files

Update README.md

parent 94682a8a
No related branches found
No related tags found
No related merge requests found
...@@ -86,6 +86,21 @@ GRANT ALL PRIVILEGES ON haltools.* TO 'haladmin'@'localhost'; ...@@ -86,6 +86,21 @@ GRANT ALL PRIVILEGES ON haltools.* TO 'haladmin'@'localhost';
FLUSH PRIVILEGES; FLUSH PRIVILEGES;
``` ```
### Install RabbitMQ
RabbitMQ est installé comme gestionnaire de queues pour permettre des requêtes asynchrones car trop longues
La librairie Celery est utilisée pour la gestion de ces requêtes
```
cd deploy
chmod 744 rabbit.sh
./rabbit.sh
sudo rabbitmqctl add_user rabbuser <password>
sudo rabbitmqctl set_permissions -p / rabbuser ".*" ".*" ".*"
cd ..
```
### Use Git ### Use Git
Install Git and configure Install Git and configure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment