Add public key to Vagrant

After copying a file to Vagrant and creating a basic file structure. We can continue with our series. So, in this post, we are going to talk about the following topics: Assign an IP address Add your public key Access to vagrant machine without vagrant ssh For the first point and taking the file structure previously mentioned, we modify as follow: Vagrant.configure("2") do |config| config.vm.box = "centos/7" config.vm.network "public_network", bridge: "en0: Wi-Fi (AirPort)", auto_config: false config. [Read More]

Copying files to vagrant

Well, one of the common things to do in Vagrant is copying files. So for achieve that task we need to prepare a file like this. Once we have that file, we change config.vm.box = "ubuntu/trusty64" for config.vm.box = "centos/7". And modify it like follow: Vagrant.configure("2") do |config| config.vm.box = "centos/7" config.vm.provision "file", source: "lorem_ipsum.txt", destination: "~/lorem_ipsum.txt" end Alright we run the command for execute our file. ❯ vagrant up Bringing machine 'default' up with 'virtualbox' provider. [Read More]

Creating virtual machines with Vagrant

It’s been awhile since I wrote a post, but in compensation I would make a series of post talking about deploying applications with edeliver. But for this, we need to prepare the path. So, in this first post I will talk about Vagrant and how to use to setup an environment. First of all, we’re going to install Vagrant and Virtual Box. We’ll download Vagrant from this link and follow the instructions(i. [Read More]

Resolviendo la criba de Eratóstenes con Elixir

Ya una vez más familiarizado con Elixir me dí a la tarea de resolver un problema que se encuentra documentado en la Wikipedia, la forma de obtener un conjunto de números primos y una solución es a través de la llamada (Criba de Eratótstenes)1 descrita así: Primer paso: listar los números naturales comprendidos entre 2 y n. Segundo paso: Se toma el primer número no rayado ni marcado, como número primo. [Read More]

Capistrano para despliegues de apps Rails

Hace tiempo que estabamos haciendo una aplicación Rails, me di a la tarear de investigar el tema obviado que es la forma en como se hace un despliegue lo más ordenado posible. Inclusive le pregunte al gran maestro @chillicoder al respecto, y efectivamente, mis sospechas eran correctas tenía que usar Capistrano(aunque chilli parece usar otra cosa), incluída la recomendación del maestro. Obviaré las partes de las instalaciones de las gemas y me enfocaré en el problema que tuve que resolver: un par de ambientes a instalar para una API hecha en Rails. [Read More]