forked from alexa-pi/AlexaPiDEPRECATED
-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.sh
executable file
·35 lines (26 loc) · 868 Bytes
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /bin/bash
apt-get update
apt-get install libasound2-dev memcached python-pip mpg123 python-alsaaudio
pip install -r requirements.txt
cp initd_alexa.sh /etc/init.d/AlexaPi
update-rc.d AlexaPi defaults
touch /var/log/alexa.log
echo "Enter your Security Profile Name:"
read productid
echo ProductID = \"$productid\" >> creds.py
echo "Enter your Security Profile Description:"
read spd
echo Security_Profile_Description = \"$spd\" >> creds.py
echo "Enter your Security Profile ID:"
read spid
echo Security_Profile_ID = \"$spid\" >> creds.py
echo "Enter your Client ID:"
read cid
echo Client_ID = \"$cid\" >> creds.py
echo "Enter your Client Secret:"
read secret
echo Client_Secret = \"$secret\" >> creds.py
ip = `ifconfig eth0 | grep "inet addr" | cut -d ':' -f 2 | cut -d ' ' -f 1`
python ./auth_web.py
echo "Open http://$ip:5000"
echo "You can now reboot"