aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-21 09:01:33 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-21 09:01:33 +0100
commit46910ee27d19f18758d188d2991c8fc51072aba5 (patch)
treeffb06bdb1ce486fd21fc1d8686cdc7053ac30c2d
parentUpdated NEWS.rst (diff)
downloadnewspipe-46910ee27d19f18758d188d2991c8fc51072aba5.tar.gz
newspipe-46910ee27d19f18758d188d2991c8fc51072aba5.tar.bz2
newspipe-46910ee27d19f18758d188d2991c8fc51072aba5.zip
Test with Vagrant.
-rw-r--r--conf/conf.cfg-sample2
-rw-r--r--vagrant/README.md15
-rw-r--r--vagrant/Vagrantfile124
-rw-r--r--vagrant/bootstrap.sh44
4 files changed, 184 insertions, 1 deletions
diff --git a/conf/conf.cfg-sample b/conf/conf.cfg-sample
index 2e36ba89..48cbe7c9 100644
--- a/conf/conf.cfg-sample
+++ b/conf/conf.cfg-sample
@@ -5,7 +5,7 @@ recaptcha_public_key =
recaptcha_private_key =
log_path = ./pyaggr3g470r/var/pyaggr3g470r.log
[database]
-uri = postgres://cedric:password@127.0.0.1:5432/pyAggr3g470r
+uri = postgres://vagrant:xxYzToW42@127.0.0.1:5432/aggregator
[feedparser]
http_proxy =
user_agent = pyAggr3g470r (https://bitbucket.org/cedricbonhomme/pyaggr3g470r)
diff --git a/vagrant/README.md b/vagrant/README.md
new file mode 100644
index 00000000..2a83dd2c
--- /dev/null
+++ b/vagrant/README.md
@@ -0,0 +1,15 @@
+Vagrant installer for pyAggr3g470r
+==================================
+
+Installation of VirtualBox and Vagrant
+--------------------------------------
+
+ $ sudo apt-get install virtualbox
+ $ wget https://dl.bintray.com/mitchellh/vagrant/vagrant_1.6.3_x86_64.deb
+ $ sudo dpkg -i vagrant_1.6.3_x86_64.deb
+
+Deployment of pyAggr3g470r in a Vagrant VM
+==========================================
+
+ $ cd vagrant/
+ $ vagrant up
diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile
new file mode 100644
index 00000000..f81d599f
--- /dev/null
+++ b/vagrant/Vagrantfile
@@ -0,0 +1,124 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
+VAGRANTFILE_API_VERSION = "2"
+
+Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
+ # All Vagrant configuration is done here. The most common configuration
+ # options are documented and commented below. For a complete reference,
+ # please see the online documentation at vagrantup.com.
+
+ # Every Vagrant virtual environment requires a box to build off of.
+ config.vm.box = "pyAggr3g470r (Ubuntu Trusty Server)"
+ config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
+ config.vm.provision :shell, path: "bootstrap.sh"
+
+ # Disable automatic box update checking. If you disable this, then
+ # boxes will only be checked for updates when the user runs
+ # `vagrant box outdated`. This is not recommended.
+ # config.vm.box_check_update = false
+
+ # 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,
+ # accessing "localhost:8080" will access port 80 on the guest machine.
+ config.vm.network "forwarded_port", guest: 5000, host: 5000
+
+ # Create a private network, which allows host-only access to the machine
+ # using a specific IP.
+ # config.vm.network "private_network", ip: "192.168.33.10"
+
+ # Create a public network, which generally matched to bridged network.
+ # Bridged networks make the machine appear as another physical device on
+ # your network.
+ # config.vm.network "public_network"
+
+ # If true, then any SSH connections made will enable agent forwarding.
+ # Default value: false
+ # config.ssh.forward_agent = true
+
+ # Share an additional folder to the guest VM. The first argument is
+ # the path on the host to the actual folder. The second argument is
+ # the path on the guest to mount the folder. And the optional third
+ # argument is a set of non-required options.
+ # config.vm.synced_folder "../", "/"
+
+ # Provider-specific configuration so you can fine-tune various
+ # backing providers for Vagrant. These expose provider-specific options.
+ # Example for VirtualBox:
+ #
+ config.vm.provider "virtualbox" do |vb|
+ # # Don't boot with headless mode
+ # vb.gui = true
+ #
+ # # Use VBoxManage to customize the VM. For example to change memory:
+ vb.customize ["modifyvm", :id, "--memory", "2048"]
+ end
+ #
+ # View the documentation for the provider you're using for more
+ # information on available options.
+
+ # Enable provisioning with CFEngine. CFEngine Community packages are
+ # automatically installed. For example, configure the host as a
+ # policy server and optionally a policy file to run:
+ #
+ # config.vm.provision "cfengine" do |cf|
+ # cf.am_policy_hub = true
+ # # cf.run_file = "motd.cf"
+ # end
+ #
+ # You can also configure and bootstrap a client to an existing
+ # policy server:
+ #
+ # config.vm.provision "cfengine" do |cf|
+ # cf.policy_server_address = "10.0.2.15"
+ # end
+
+ # Enable provisioning with Puppet stand alone. Puppet manifests
+ # are contained in a directory path relative to this Vagrantfile.
+ # You will need to create the manifests directory and a manifest in
+ # the file default.pp in the manifests_path directory.
+ #
+ # config.vm.provision "puppet" do |puppet|
+ # puppet.manifests_path = "manifests"
+ # puppet.manifest_file = "site.pp"
+ # end
+
+ # Enable provisioning with chef solo, specifying a cookbooks path, roles
+ # path, and data_bags path (all relative to this Vagrantfile), and adding
+ # some recipes and/or roles.
+ #
+ # config.vm.provision "chef_solo" do |chef|
+ # chef.cookbooks_path = "../my-recipes/cookbooks"
+ # chef.roles_path = "../my-recipes/roles"
+ # chef.data_bags_path = "../my-recipes/data_bags"
+ # chef.add_recipe "mysql"
+ # chef.add_role "web"
+ #
+ # # You may also specify custom JSON attributes:
+ # chef.json = { :mysql_password => "foo" }
+ # end
+
+ # Enable provisioning with chef server, specifying the chef server URL,
+ # and the path to the validation key (relative to this Vagrantfile).
+ #
+ # The Opscode Platform uses HTTPS. Substitute your organization for
+ # ORGNAME in the URL and validation key.
+ #
+ # If you have your own Chef Server, use the appropriate URL, which may be
+ # HTTP instead of HTTPS depending on your configuration. Also change the
+ # validation key to validation.pem.
+ #
+ # config.vm.provision "chef_client" do |chef|
+ # chef.chef_server_url = "https://api.opscode.com/organizations/ORGNAME"
+ # chef.validation_key_path = "ORGNAME-validator.pem"
+ # end
+ #
+ # If you're using the Opscode platform, your validator client is
+ # ORGNAME-validator, replacing ORGNAME with your organization name.
+ #
+ # If you have your own Chef Server, the default validation client name is
+ # chef-validator, unless you changed the configuration.
+ #
+ # chef.validation_client_name = "ORGNAME-validator"
+end
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh
new file mode 100644
index 00000000..867553f2
--- /dev/null
+++ b/vagrant/bootstrap.sh
@@ -0,0 +1,44 @@
+#!/bin/sh
+
+apt-get update
+apt-get upgrade
+apt-get install -y python python-pip git
+
+# Clone the source code of pyAggr3g470r
+git clone https://bitbucket.org/cedricbonhomme/pyaggr3g470r.git
+if [ $? -ne 0 ]; then
+ echo "\nERROR: unable to clone the git repository\n"
+ exit 1;
+fi
+
+# Install all requierements
+cd pyaggr3g470r
+apt-get install -y libxml2-dev libxslt1-dev
+pip install --upgrade -r requirements.txt
+cp conf/conf.cfg-sample conf/conf.cfg
+cd ..
+
+# Installation of PostgreSQL
+apt-get install -y postgresql postgresql-server-dev-9.3 postgresql-client
+
+# Configuration of the database
+echo "127.0.0.1:5432:aggregator:vagrant:xxYzToW42" > .pgpass
+chmod 700 .pgpass
+sudo -u postgres createuser vagrant --no-superuser --createdb --no-createrole
+createdb aggregator --no-password
+echo "ALTER USER vagrant WITH ENCRYPTED PASSWORD 'xxYzToW42';" | sudo -u postgres psql
+echo "GRANT ALL PRIVILEGES ON DATABASE aggregator TO vagrant;" | sudo -u postgres psql
+
+# Initializes the database
+cd pyaggr3g470r
+python db_create.py
+
+# start pyAggr3g470r at startup
+echo "#!/bin/sh -e" > /etc/rc.local
+echo "su vagrant python runserver.py" >> /etc/rc.local
+echo "exit 0" >> /etc/rc.local
+chmod 755 /etc/rc.local
+
+# Start the application
+chown -R vagrant:vagrant ..
+/etc/init.d/rc.local start
bgstack15