Skip to content
Snippets Groups Projects
Commit a06f2625 authored by David Trattnig's avatar David Trattnig
Browse files

Added script to initialize the project and its configuration.

parent e4b1b33b
No related branches found
No related tags found
No related merge requests found
......@@ -102,18 +102,18 @@ GRANT ALL PRIVILEGES ON aura_engine.* TO 'aura'@'localhost';
Log into your phpmyadmin or adminer with correct privileges, create a database and a user for the aura engine.
#### Files and Folders
#### Project initialization
* Create the audio folder defined in your engine.ini
Run
```bash
mkdir /var/audio
mkdir /etc/aura
cp {where you cloned the repo}/configuration/engine.ini /etc/aura/engine.ini
edit engine.ini to your needs
sh init.sh
```
* Edit settings in engine.ini. Take your time for that.
This creates the folder ***/var/audio** and copies some default configuration
to ***/etc/aura/engine.ini**
After that, you have to edit the settings in /etc/aura/engine.ini. Take your time for that.
#### aura.py
......
init.sh 0 → 100755
sudo mkdir /var/audio
echo /var/audio created.
sudo mkdir /etc/aura
echo /etc/aura created.
sudo cp ./configuration/engine.ini /etc/aura/engine.ini
echo configuration copied to /etc/aura/engine.ini
echo
echo AuRa Engine initialization done!
echo --------------------
echo Before moving on edit /etc/aura/engine.ini to your needs
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