No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with
7 additions and
3 deletions
-
fabfile.py
-
makefile
|
@ -11,7 +11,8 @@ def doesitsparkjoy(c): |
|
|
c.run('sudo supervisorctl restart apps:doesitsparkjoy') |
|
|
c.run('sudo supervisorctl restart apps:doesitsparkjoy') |
|
|
c.run('sudo systemctl restart nginx') |
|
|
c.run('sudo systemctl restart nginx') |
|
|
c.run('sh bin/clear-archives') |
|
|
c.run('sh bin/clear-archives') |
|
|
c.run('sh bin/copy-fixed-archive') |
|
|
# TODO: enable when it works again |
|
|
|
|
|
# c.run('sh bin/copy-fixed-archive') |
|
|
print('Released <3') |
|
|
print('Released <3') |
|
|
|
|
|
|
|
|
@task |
|
|
@task |
|
@ -23,7 +24,8 @@ def voicegardens(c): |
|
|
c.run('sudo supervisorctl restart apps:voicegardens') |
|
|
c.run('sudo supervisorctl restart apps:voicegardens') |
|
|
c.run('sudo systemctl restart nginx') |
|
|
c.run('sudo systemctl restart nginx') |
|
|
c.run('sh bin/clear-archives') |
|
|
c.run('sh bin/clear-archives') |
|
|
c.run('sh bin/copy-fixed-archive') |
|
|
# TODO: enable when it works again |
|
|
|
|
|
# c.run('sh bin/copy-fixed-archive') |
|
|
print('Released <3') |
|
|
print('Released <3') |
|
|
|
|
|
|
|
|
@task |
|
|
@task |
|
|
|
@ -26,4 +26,6 @@ cleanarchives: |
|
|
dailycron: |
|
|
dailycron: |
|
|
@fab -H $(REMOTE_HOST) dailycron |
|
|
@fab -H $(REMOTE_HOST) dailycron |
|
|
|
|
|
|
|
|
.PHONY: dev-serve prod-serve clear-local-archive doesitsparkjoy voicegardens cleanarchives dailycron |
|
|
release: doesitsparkjoy voicegardens |
|
|
|
|
|
|
|
|
|
|
|
.PHONY: dev-serve prod-serve clear-local-archive doesitsparkjoy voicegardens cleanarchives dailycron release |
|
|