Update Installation Scratchbook authored by Martin Pollet's avatar Martin Pollet
...@@ -3,9 +3,17 @@ ...@@ -3,9 +3,17 @@
3. Create database: 3. Create database:
``` ```
CREATE DATABASE xibo_booking_system; CREATE DATABASE xibo_booking_system;
grant all privileges on xibo_bookin_system.* TO 'xbs'@'localhost' identified by '<your_password>'; grant all privileges on xibo_booking_system.* TO 'xbs'@'localhost' identified by '<your_password>';
flush privileges; flush privileges;
``` ```
4. Prepare Django (as user xbs):
- `git clone https://gitlab.pollet-computer.de/polly/xibo-booking-system.git`
- configure database in settings.py
- choose driver in requirements.txt
```
python3 -m venv venv
```
TODO: put all this in container TODO: put all this in container
\ No newline at end of file