Privacy Overview
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Siempre activas
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.

No hay cookies para mostrar.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No hay cookies para mostrar.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.

No hay cookies para mostrar.

Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.

No hay cookies para mostrar.

Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.

No hay cookies para mostrar.

Ubuntu como entorno de programación y diseño web – PARTE V

Continuación de la parte IV del tutorial Ubuntu como entorno de programación y diseño web
Palabras claves: programación web, diseño web, entorno de desarrollo, Ubuntu, front-end developer, full-stack developer, Ruby, Rails, Node, Javascript.
Parte I | Parte II | Parte III | Parte IV | Parte V | Parte VI | Parte VII

Instalar Ruby y Rails

ruby on railsEstas son las instrucciones de https://gorails.com/setup/ubuntu/14.04. Primero vamos a instalar unos paquetes necesarios:

sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev

Ahora instalamos Ruby y Bundler

git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
exec $SHELL
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc
exec $SHELL
git clone https://github.com/rbenv/rbenv-gem-rehash.git ~/.rbenv/plugins/rbenv-gem-rehash
rbenv install 2.3.1
rbenv global 2.3.1

Testamos que está todo correcto:

ruby -v

E instalamos Bundler:

gem install bundler

Ahora es el turno de Rails:

curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs
gem install rails -v 4.2.6

Para disponibilizar los ejecutables rails escribimos:

rbenv rehash

Testamos que está todo correcto:

rails -v

Si queremos usar MySQL en vez de sqlite3 instalamos:

sudo apt-get install mysql-server mysql-client libmysqlclient-dev

Luego actualizamos el archivo config/database.yml de nuestra aplicación con el usuario y clave correspondiente.

Instalar Node.js Javascript

Si queremos instalar la plataforma de Javascript Node.js https://nodejs.org/en/ para desarrollos front-end o back-end es sólo ejecutar estos comandos:

sudo apt-get update
sudo apt-get install nodejs
sudo apt-get install npm

Mean.js

Mean.js es un JavaScript full-stack que sirve para programar aplicaciones web usando MongoDB, Express, AngularJS, and Node.js. Se puede descargar de http://meanjs.org/ y para instalarla voy a preparar otro tutorial 🙂

Seguimos a: Ubuntu como entorno de programación y diseño web – PARTE VI


Comentarios

5 respuestas a «Ubuntu como entorno de programación y diseño web – PARTE V»

  1. Información Bitacoras.com
    Valora en Bitacoras.com: Ubuntu como entorno de programación y diseño web – PARTE V programación web, diseño web, entorno de desarrollo, Ubuntu, front-end developer, full-stack developer, Ruby, Rails, Node, Javascript

  2. […] I | Parte II | Parte III | Parte IV | Parte V | Parte VI | Parte […]

  3. […] I | Parte II | Parte III | Parte IV | Parte V | Parte VI | Parte […]

  4. […] I | Parte II | Parte III | Parte IV | Parte V | Parte VI | Parte […]

  5. […] I | Parte II | Parte III | Parte IV | Parte V | Parte VI | Parte […]

Buy Me A Coffee