1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-24 23:25:24 +00:00

Cleaned some places

This commit is contained in:
Retspen 2015-04-21 17:13:53 +03:00
parent eda0a390fa
commit 868dda5494
7 changed files with 10 additions and 13 deletions

View file

@ -2,7 +2,7 @@ language: python
python:
- "2.7"
env:
- DJANGO=1.7.7
- DJANGO=1.8
install:
- pip install -r dev/requirements.txt --use-mirrors
script:

2
Vagrantfile vendored
View file

@ -3,7 +3,7 @@
Vagrant.configure(2) do |config|
config.vm.box = "chef/ubuntu-14.04"
config.vm.hostname = "webvirtmgr"
config.vm.hostname = "webvirtcloud"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provision "shell", inline: <<-SHELL
sudo sh /vagrant/dev/libvirt-bootstrap.sh

View file

@ -1,17 +1,15 @@
[program:webvirtcloud]
command=/usr/bin/python /var/www/webvirtcloud/manage.py run_gunicorn -c /var/www/webvirtcloud/conf/gunicorn.conf.py
command=/usr/local/bin/gunicorn webvirtcloud.wsgi:application -c /var/www/webvirtcloud/gunicorn.conf.py
directory=/var/www/webvirtcloud
user=www-data
autostart=true
autorestart=true
stdout_logfile=/var/log/supervisor/webvirtcloud.log
redirect_stderr=true
user=www-data
[program:consoled]
command=/usr/bin/python /var/www/webvirtcloud/console/consoled
[program:novncd]
command=/usr/bin/python /var/www/webvirtcloud/console/novncd
directory=/var/www/webvirtcloud
user=www-data
autostart=true
autorestart=true
stdout_logfile=/var/log/supervisor/consoled.log
redirect_stderr=true
user=www-data

View file

@ -1,5 +1,4 @@
Django==1.8
websockify==0.6.0
-r ../requirements.txt
pep8==1.6.2
pyflakes==0.8.1
pylint==1.4.3