Skip to content
This repository was archived by the owner on Mar 17, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ Vagrant.configure("2") do |config|
# please see the online documentation at vagrantup.com.

# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "precise64"
config.vm.box = "hashicorp/precise64"

# The url from where the 'config.vm.box' box will be fetched if it
# doesn't already exist on the user's system.
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
# config.vm.box_url = "http://files.vagrantup.com/precise64.box"

# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
Expand Down
7 changes: 3 additions & 4 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ apt-get update -y
apt-get install build-essential -y
cd /vagrant
xargs -a apt-packages.txt apt-get install -y

pip install -r pre-requirements.txt
pip install -r requirements.txt
alembic upgrade head
pip install -r pre-requirements.txt -i https://pypi.python.org/simple
pip install -r requirements.txt -i https://pypi.python.org/simple
PYTHONPATH=. alembic upgrade head

service scan start
service celery start
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ py-bcrypt==0.4
pudb==2013.5.1
Flask-Babel==0.9
Flask-WTF==0.9.4
celery[librabbitmq,redis,auth,msgpack]==3.1.9
celery[librabbitmq,redis,auth,msgpack]==4.1
MySQL-python==1.2.5
gunicorn==18.0
nose==1.3.0
Expand Down