use python3-venv
This commit is contained in:
parent
90537f2f0e
commit
8e4ba42fc1
13 changed files with 119 additions and 118 deletions
|
@ -29,8 +29,7 @@
|
||||||
2) install all required packages
|
2) install all required packages
|
||||||
|
|
||||||
apt-get install git \
|
apt-get install git \
|
||||||
python3-setuptools python3-pip python3-virtualenv \
|
python3-setuptools python3-pip python3-venv ipython3 \
|
||||||
virtualenv ipython3 \
|
|
||||||
python3-dev python3-pil python3-numpy python3-psycopg2 \
|
python3-dev python3-pil python3-numpy python3-psycopg2 \
|
||||||
python3-pyinotify python3-simplejson \
|
python3-pyinotify python3-simplejson \
|
||||||
python3-geoip python3-html5lib python3-lxml \
|
python3-geoip python3-html5lib python3-lxml \
|
||||||
|
|
2
ctl
2
ctl
|
@ -9,7 +9,7 @@ fi
|
||||||
if [ "$action" = "init" ]; then
|
if [ "$action" = "init" ]; then
|
||||||
cd "`dirname "$0"`"
|
cd "`dirname "$0"`"
|
||||||
BASE=`pwd`
|
BASE=`pwd`
|
||||||
virtualenv --system-site-packages -p /usr/bin/python3 .
|
python3 -m venv --system-site-packages .
|
||||||
if [ ! -d static/oxjs ]; then
|
if [ ! -d static/oxjs ]; then
|
||||||
git clone --depth 1 https://git.0x2620.org/oxjs.git static/oxjs
|
git clone --depth 1 https://git.0x2620.org/oxjs.git static/oxjs
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -9,6 +9,7 @@ import ox
|
||||||
from ox import sort_string
|
from ox import sort_string
|
||||||
from six import PY2
|
from six import PY2
|
||||||
|
|
||||||
|
|
||||||
def safe_filename(filename):
|
def safe_filename(filename):
|
||||||
filename = filename.replace(': ', '_ ')
|
filename = filename.replace(': ', '_ ')
|
||||||
filename = filename.replace('/', '_')
|
filename = filename.replace('/', '_')
|
||||||
|
|
|
@ -3,6 +3,28 @@ import os
|
||||||
import signal
|
import signal
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
def activate_venv(base):
|
||||||
|
if os.path.exists(base):
|
||||||
|
old_os_path = os.environ.get('PATH', '')
|
||||||
|
bin_path = os.path.join(base, 'bin')
|
||||||
|
if bin_path not in old_os_path:
|
||||||
|
os.environ['PATH'] = os.path.join(base, 'bin') + os.pathsep + old_os_path
|
||||||
|
site_packages = os.path.join(base, 'lib', 'python%s' % sys.version[:3], 'site-packages')
|
||||||
|
prev_sys_path = list(sys.path)
|
||||||
|
import site
|
||||||
|
site.addsitedir(site_packages)
|
||||||
|
sys.real_prefix = sys.prefix
|
||||||
|
sys.prefix = base
|
||||||
|
# Move the added items to the front of the path:
|
||||||
|
new_sys_path = []
|
||||||
|
for item in list(sys.path):
|
||||||
|
if item not in prev_sys_path:
|
||||||
|
new_sys_path.append(item)
|
||||||
|
sys.path.remove(item)
|
||||||
|
sys.path[:0] = new_sys_path
|
||||||
|
|
||||||
|
|
||||||
class DelayedSignalHandler(object):
|
class DelayedSignalHandler(object):
|
||||||
def __init__(self, managed_signals):
|
def __init__(self, managed_signals):
|
||||||
self.managed_signals = managed_signals
|
self.managed_signals = managed_signals
|
||||||
|
@ -27,11 +49,12 @@ class DelayedSignalHandler(object):
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
root_dir = os.path.normpath(os.path.abspath(os.path.dirname(__file__)))
|
root_dir = os.path.normpath(os.path.abspath(os.path.dirname(__file__)))
|
||||||
os.chdir(root_dir)
|
|
||||||
|
|
||||||
# use python3 from virtualenv
|
# use python3 from venv
|
||||||
python3 = os.path.normpath(os.path.join(root_dir, '..', 'bin', 'python3'))
|
venv_dir = os.path.normpath(os.path.join(root_dir, '..'))
|
||||||
|
python3 = os.path.join(venv_dir, 'bin', 'python3')
|
||||||
if os.path.exists(python3) and sys.version_info[0] == 2:
|
if os.path.exists(python3) and sys.version_info[0] == 2:
|
||||||
import subprocess
|
import subprocess
|
||||||
cmd = [python3] + sys.argv
|
cmd = [python3] + sys.argv
|
||||||
|
@ -39,14 +62,9 @@ if os.path.exists(python3) and sys.version_info[0] == 2:
|
||||||
exit_value = subprocess.call(cmd)
|
exit_value = subprocess.call(cmd)
|
||||||
sys.exit(exit_value)
|
sys.exit(exit_value)
|
||||||
|
|
||||||
# using virtualenv's activate_this.py to reorder sys.path
|
os.chdir(root_dir)
|
||||||
activate_this = os.path.normpath(os.path.join(root_dir, '..', 'bin', 'activate_this.py'))
|
activate_venv(venv_dir)
|
||||||
with open(activate_this) as f:
|
|
||||||
code = compile(f.read(), activate_this, 'exec')
|
|
||||||
exec(code, dict(__file__=activate_this))
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
|
||||||
from django.core.management import execute_from_command_line
|
from django.core.management import execute_from_command_line
|
||||||
import settings
|
import settings
|
||||||
|
|
|
@ -11,6 +11,9 @@ import djcelery
|
||||||
djcelery.setup_loader()
|
djcelery.setup_loader()
|
||||||
|
|
||||||
BASE_DIR = PROJECT_ROOT = normpath(dirname(__file__))
|
BASE_DIR = PROJECT_ROOT = normpath(dirname(__file__))
|
||||||
|
BIN_DIR = normpath(join(PROJECT_ROOT, '..', 'bin'))
|
||||||
|
if BIN_DIR not in os.environ['PATH']:
|
||||||
|
os.environ['PATH'] = BIN_DIR + os.pathsep + os.environ['PATH']
|
||||||
|
|
||||||
DEBUG = False
|
DEBUG = False
|
||||||
JSON_DEBUG = False
|
JSON_DEBUG = False
|
||||||
|
|
|
@ -1,25 +1,17 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vi:si:et:sw=4:sts=4:ts=4
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
from __future__ import division
|
from __future__ import division
|
||||||
import os
|
import os
|
||||||
|
|
||||||
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
||||||
|
|
||||||
# using virtualenv's activate_this.py to reorder sys.path
|
|
||||||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
|
||||||
if os.path.exists(activate_this):
|
|
||||||
with open(activate_this) as f:
|
|
||||||
code = compile(f.read(), activate_this, 'exec')
|
|
||||||
exec(code, dict(__file__=activate_this))
|
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
||||||
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
||||||
|
|
||||||
|
|
||||||
def render_icon(frame, timeline, icon):
|
def render_icon(frame, timeline, icon):
|
||||||
icon_width = 1024
|
icon_width = 1024
|
||||||
icon_height = 1024
|
icon_height = 1024
|
||||||
|
|
|
@ -1,26 +1,20 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vi:si:et:sw=4:sts=4:ts=4
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
from __future__ import division
|
from __future__ import division
|
||||||
import os
|
import os
|
||||||
|
|
||||||
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
||||||
|
|
||||||
# using virtualenv's activate_this.py to reorder sys.path
|
|
||||||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
|
||||||
if os.path.exists(activate_this):
|
|
||||||
with open(activate_this) as f:
|
|
||||||
code = compile(f.read(), activate_this, 'exec')
|
|
||||||
exec(code, dict(__file__=activate_this))
|
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
from PIL import ImageDraw
|
from PIL import ImageDraw
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
from ox.image import drawText, wrapText
|
from ox.image import drawText, wrapText
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
||||||
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
||||||
|
|
||||||
|
|
||||||
def render_list_icon(frames, icon):
|
def render_list_icon(frames, icon):
|
||||||
icon_width = 256
|
icon_width = 256
|
||||||
icon_height = 256
|
icon_height = 256
|
||||||
|
|
|
@ -1,18 +1,9 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vi:si:et:sw=4:sts=4:ts=4
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
from __future__ import division
|
from __future__ import division
|
||||||
import os
|
import os
|
||||||
|
|
||||||
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
||||||
|
|
||||||
# using virtualenv's activate_this.py to reorder sys.path
|
|
||||||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
|
||||||
if os.path.exists(activate_this):
|
|
||||||
with open(activate_this) as f:
|
|
||||||
code = compile(f.read(), activate_this, 'exec')
|
|
||||||
exec(code, dict(__file__=activate_this))
|
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
from PIL import ImageDraw
|
from PIL import ImageDraw
|
||||||
import json
|
import json
|
||||||
|
@ -22,6 +13,7 @@ from ox.image import drawText, getRGB, getTextSize, wrapText
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
||||||
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
||||||
|
|
||||||
def get_frame(id, height, position):
|
def get_frame(id, height, position):
|
||||||
|
|
|
@ -1,18 +1,9 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vi:si:et:sw=4:sts=4:ts=4
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
from __future__ import division
|
from __future__ import division
|
||||||
import os
|
import os
|
||||||
|
|
||||||
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
||||||
|
|
||||||
# using virtualenv's activate_this.py to reorder sys.path
|
|
||||||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
|
||||||
if os.path.exists(activate_this):
|
|
||||||
with open(activate_this) as f:
|
|
||||||
code = compile(f.read(), activate_this, 'exec')
|
|
||||||
exec(code, dict(__file__=activate_this))
|
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
from PIL import ImageDraw
|
from PIL import ImageDraw
|
||||||
import json
|
import json
|
||||||
|
@ -21,6 +12,7 @@ import ox
|
||||||
from ox.image import getRGB, drawText, wrapText
|
from ox.image import getRGB, drawText, wrapText
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
||||||
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
||||||
|
|
||||||
def render_poster(data, poster):
|
def render_poster(data, poster):
|
||||||
|
|
|
@ -1,18 +1,9 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vi:si:et:sw=4:sts=4:ts=4
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
from __future__ import division
|
from __future__ import division
|
||||||
import os
|
import os
|
||||||
|
|
||||||
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
||||||
|
|
||||||
# using virtualenv's activate_this.py to reorder sys.path
|
|
||||||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
|
||||||
if os.path.exists(activate_this):
|
|
||||||
with open(activate_this) as f:
|
|
||||||
code = compile(f.read(), activate_this, 'exec')
|
|
||||||
exec(code, dict(__file__=activate_this))
|
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
from PIL import ImageDraw
|
from PIL import ImageDraw
|
||||||
import json
|
import json
|
||||||
|
@ -21,6 +12,8 @@ import ox
|
||||||
from ox.image import drawText, wrapText
|
from ox.image import drawText, wrapText
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
|
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
||||||
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
||||||
|
|
||||||
def render_poster(data, poster):
|
def render_poster(data, poster):
|
||||||
|
|
|
@ -1,18 +1,9 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# vi:si:et:sw=4:sts=4:ts=4
|
# vi:si:et:sw=4:sts=4:ts=4
|
||||||
from __future__ import division
|
from __future__ import division
|
||||||
import os
|
import os
|
||||||
|
|
||||||
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
||||||
|
|
||||||
# using virtualenv's activate_this.py to reorder sys.path
|
|
||||||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
|
||||||
if os.path.exists(activate_this):
|
|
||||||
with open(activate_this) as f:
|
|
||||||
code = compile(f.read(), activate_this, 'exec')
|
|
||||||
exec(code, dict(__file__=activate_this))
|
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
from PIL import ImageDraw
|
from PIL import ImageDraw
|
||||||
import json
|
import json
|
||||||
|
@ -21,6 +12,7 @@ import ox
|
||||||
from ox.image import drawText, wrapText
|
from ox.image import drawText, wrapText
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
||||||
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
static_root = os.path.join(os.path.dirname(__file__), 'data')
|
||||||
|
|
||||||
def render_poster(data, poster):
|
def render_poster(data, poster):
|
||||||
|
|
100
update.py
100
update.py
|
@ -1,49 +1,16 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
import json
|
||||||
import os
|
import os
|
||||||
|
|
||||||
base = os.path.normpath(os.path.abspath(os.path.dirname(__file__)))
|
|
||||||
os.chdir(base)
|
|
||||||
|
|
||||||
# using virtualenv's activate_this.py to reorder sys.path
|
|
||||||
activate_this = os.path.join(base, 'bin', 'activate_this.py')
|
|
||||||
with open(activate_this) as f:
|
|
||||||
code = compile(f.read(), activate_this, 'exec')
|
|
||||||
exec(code, dict(__file__=activate_this))
|
|
||||||
|
|
||||||
import sys
|
|
||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import sys
|
||||||
try:
|
try:
|
||||||
from urllib.request import urlopen
|
from urllib.request import urlopen
|
||||||
except:
|
except:
|
||||||
from urllib2 import urlopen
|
from urllib2 import urlopen
|
||||||
import json
|
|
||||||
from os.path import join, exists
|
from os.path import join, exists
|
||||||
|
|
||||||
def run(*cmd):
|
|
||||||
p = subprocess.Popen(cmd)
|
|
||||||
p.wait()
|
|
||||||
return p.returncode
|
|
||||||
|
|
||||||
def get(*cmd):
|
|
||||||
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
||||||
stdout, error = p.communicate()
|
|
||||||
return stdout.decode()
|
|
||||||
|
|
||||||
def get_json(url):
|
|
||||||
return json.loads(urlopen(url).read().decode())
|
|
||||||
|
|
||||||
def get_release():
|
|
||||||
if os.path.exists('.release'):
|
|
||||||
url = open('.release').read().strip()
|
|
||||||
else:
|
|
||||||
url = 'https://pan.do/json/release-stable.json'
|
|
||||||
try:
|
|
||||||
return get_json(url)
|
|
||||||
except:
|
|
||||||
print("Failed to load %s check your internet connection." % url)
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
repos = {
|
repos = {
|
||||||
"pandora": {
|
"pandora": {
|
||||||
|
@ -64,9 +31,60 @@ repos = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def activate_venv(base):
|
||||||
|
if os.path.exists(base):
|
||||||
|
old_os_path = os.environ.get('PATH', '')
|
||||||
|
bin_path = os.path.join(base, 'bin')
|
||||||
|
if bin_path not in old_os_path:
|
||||||
|
os.environ['PATH'] = os.path.join(base, 'bin') + os.pathsep + old_os_path
|
||||||
|
site_packages = os.path.join(base, 'lib', 'python%s' % sys.version[:3], 'site-packages')
|
||||||
|
prev_sys_path = list(sys.path)
|
||||||
|
import site
|
||||||
|
site.addsitedir(site_packages)
|
||||||
|
sys.real_prefix = sys.prefix
|
||||||
|
sys.prefix = base
|
||||||
|
# Move the added items to the front of the path:
|
||||||
|
new_sys_path = []
|
||||||
|
for item in list(sys.path):
|
||||||
|
if item not in prev_sys_path:
|
||||||
|
new_sys_path.append(item)
|
||||||
|
sys.path.remove(item)
|
||||||
|
sys.path[:0] = new_sys_path
|
||||||
|
|
||||||
|
|
||||||
|
def run(*cmd):
|
||||||
|
p = subprocess.Popen(cmd)
|
||||||
|
p.wait()
|
||||||
|
return p.returncode
|
||||||
|
|
||||||
|
|
||||||
|
def get(*cmd):
|
||||||
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
|
stdout, error = p.communicate()
|
||||||
|
return stdout.decode()
|
||||||
|
|
||||||
|
|
||||||
|
def get_json(url):
|
||||||
|
return json.loads(urlopen(url).read().decode())
|
||||||
|
|
||||||
|
|
||||||
|
def get_release():
|
||||||
|
if os.path.exists('.release'):
|
||||||
|
url = open('.release').read().strip()
|
||||||
|
else:
|
||||||
|
url = 'https://pan.do/json/release-stable.json'
|
||||||
|
try:
|
||||||
|
return get_json(url)
|
||||||
|
except:
|
||||||
|
print("Failed to load %s check your internet connection." % url)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
def reload_notice(base):
|
def reload_notice(base):
|
||||||
print('\nPlease restart pan.do/ra to finish the update:\n\tsudo %s/ctl reload\n' % base)
|
print('\nPlease restart pan.do/ra to finish the update:\n\tsudo %s/ctl reload\n' % base)
|
||||||
|
|
||||||
|
|
||||||
def check_services(base):
|
def check_services(base):
|
||||||
services = "pandora pandora-tasks pandora-encoding pandora-cron pandora-websocketd".split()
|
services = "pandora pandora-tasks pandora-encoding pandora-cron pandora-websocketd".split()
|
||||||
for service in services:
|
for service in services:
|
||||||
|
@ -83,6 +101,7 @@ def check_services(base):
|
||||||
print('\tsudo service %s start' % service)
|
print('\tsudo service %s start' % service)
|
||||||
print('')
|
print('')
|
||||||
|
|
||||||
|
|
||||||
def update_service(service):
|
def update_service(service):
|
||||||
print('Please install new init script for "%s" service:' % service)
|
print('Please install new init script for "%s" service:' % service)
|
||||||
if os.path.exists('/etc/init/%s.conf' % service):
|
if os.path.exists('/etc/init/%s.conf' % service):
|
||||||
|
@ -92,15 +111,22 @@ def update_service(service):
|
||||||
print('\tsudo systemctl daemon-reload')
|
print('\tsudo systemctl daemon-reload')
|
||||||
print('\tsudo service %s restart' % service)
|
print('\tsudo service %s restart' % service)
|
||||||
|
|
||||||
|
|
||||||
def run_git(path, *args):
|
def run_git(path, *args):
|
||||||
cmd = ['git'] + list(args)
|
cmd = ['git'] + list(args)
|
||||||
env = {'GIT_DIR': '%s/.git' % path}
|
env = {'GIT_DIR': '%s/.git' % path}
|
||||||
return subprocess.check_output(cmd, env=env).decode().strip()
|
return subprocess.check_output(cmd, env=env).decode().strip()
|
||||||
|
|
||||||
|
|
||||||
def get_version(path):
|
def get_version(path):
|
||||||
return run_git(path, 'rev-list', 'HEAD', '--count')
|
return run_git(path, 'rev-list', 'HEAD', '--count')
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
base = os.path.normpath(os.path.abspath(os.path.dirname(__file__)))
|
||||||
|
os.chdir(base)
|
||||||
|
activate_venv(base)
|
||||||
|
|
||||||
if len(sys.argv) == 2 and sys.argv[1] in ('database', 'db'):
|
if len(sys.argv) == 2 and sys.argv[1] in ('database', 'db'):
|
||||||
os.chdir(join(base, 'pandora'))
|
os.chdir(join(base, 'pandora'))
|
||||||
print('\nRunning "./manage.py migrate"\n')
|
print('\nRunning "./manage.py migrate"\n')
|
||||||
|
@ -144,7 +170,7 @@ if __name__ == "__main__":
|
||||||
import pandora.settings
|
import pandora.settings
|
||||||
with open('pandora/local_settings.py', 'r') as f:
|
with open('pandora/local_settings.py', 'r') as f:
|
||||||
local_settings = f.read()
|
local_settings = f.read()
|
||||||
if not 'BROKER_URL' in local_settings:
|
if 'BROKER_URL' not in local_settings:
|
||||||
broker_url = 'amqp://%s:%s@%s:%s/%s' % (
|
broker_url = 'amqp://%s:%s@%s:%s/%s' % (
|
||||||
getattr(pandora.settings, 'BROKER_USER', 'pandora'),
|
getattr(pandora.settings, 'BROKER_USER', 'pandora'),
|
||||||
getattr(pandora.settings, 'BROKER_PASSWORD', 'box'),
|
getattr(pandora.settings, 'BROKER_PASSWORD', 'box'),
|
||||||
|
|
|
@ -69,8 +69,7 @@ apt-get install -y \
|
||||||
git \
|
git \
|
||||||
python3-setuptools \
|
python3-setuptools \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
virtualenv \
|
python3-venv \
|
||||||
python3-virtualenv \
|
|
||||||
python3-dev \
|
python3-dev \
|
||||||
python3-pil \
|
python3-pil \
|
||||||
python3-numpy \
|
python3-numpy \
|
||||||
|
|
Loading…
Reference in a new issue