-
Notifications
You must be signed in to change notification settings - Fork 15
/
sudo_init_script.sh
executable file
·61 lines (48 loc) · 1.99 KB
/
sudo_init_script.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash
# ###################################
# NOTE: NEVER RUN THIS ON PRODUCTION!!
# ###################################
echo -e "Note: never run this on production!"
# get rid of old stuff
sudo docker-compose down
rm meow/frontend/bundles/* -f
rm -f celerybeat.pid
REDIS_POSTGRES="REDIS_URL=redis://redis:6379/\nDATABASE_URL=postgres://postgres@db:5432/postgres\n"
PERIODIC_TASK_MINUTES=2
if [ ! -f ".env" ]
then
echo -e "Please the following environment variables: "
echo -e $REDIS_POSTGRES > .env
read -p "SECRET_KEY: " TMP
echo -e "SECRET_KEY=$TMP" >> .env
echo -e "DEBUG=True" >> .env
read -p "SLACK_CLIENT_ID: " TMP
echo -e "SLACK_CLIENT_ID=$TMP" >> .env
read -p "SLACK_CLIENT_SECRET: " TMP
echo -e "SLACK_CLIENT_SECRET=$TMP" >> .env
read -p "SLACK_ENDPOINT: " TMP
echo -e "SLACK_ENDPOINT=$TMP" >> .env
fi
# this inits everything but will only continue if the pervious step was successful
npm i
npm run build
sudo docker-compose build &&
sudo docker-compose run web meow/manage.py migrate &&
echo ">>> The ids and secrets can be found in the #meow_dev channel's pinned messages" &&
sudo docker-compose run web meow/manage.py collectstatic --noinput
sudo docker-compose run web meow/manage.py init
if [ $? == 0 ]; then
echo -e "from scheduler.models import Section\ns = Section(name=\"test\")\ns.save()" | sudo docker-compose run web meow/manage.py shell
if [ $? != 0 ]; then
echo "!!!!! Failed to create Test section !!!!!"
else
echo "Created section \"Test\""
fi
echo -e "from django_celery_beat.models import PeriodicTask, IntervalSchedule\nschedule=IntervalSchedule.objects.create(every=$PERIODIC_TASK_MINUTES, period=IntervalSchedule.MINUTES)\nPeriodicTask.objects.create(interval=schedule, name='Send Posts', task='sendposts')\n" | sudo docker-compose run web meow/manage.py shell
if [ $? != 0 ]; then
echo "!!!!! Failed to create Periodic Task !!!!!"
else
echo "Created sendposts Periodic Task (running every $PERIODIC_TASK_MINUTES minutes)"
fi
fi
rm -f celerybeat.pid