srhyne / warpspeed

WarpSpeed.io provisioning and management for production servers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WarpSpeed Server Provisioning and Management

We make web deployment easy. For complete information, please visit: https://warpspeed.io.

Server Provisioning

WarpSpeed is designed for use with Ubuntu 14.04 LTS 64 bit. A variety of installer scripts are available within this repository to configure your server just as you want it. The scripts in this repository can be used standalone, or in conjunction with the WarpSpeed.io web interface.

WarpSpeed.io Web Interface

WarpSpeed.io allows you to use all of these scripts very easily through an intuitive web interface. You can connect to your favorite server provider, create a server, install your stack, and deploy your first site with just a few clicks. It also supports additional features such as editing site configuration files and setting up cron jobs.

https://warpspeed.io

Server Providers

The WarpSpeed.io web interface currently supports Digital Ocean and Linode. It will soon support deployment on any server provider. If you use the WarpSpeed scripts directly, you can deploy to any server provider by following the standalone usage instructions below.

Standalone Usage

To use the WarpSpeed scripts in a standalone fashion, you first need to create a server. You can use a server like RackSpace, Digital Ocean, Linode, etc. to create your server. Make sure you use an Ubuntu 14.04 LTS 64 bit base image, regardless of your server provider.

Once you have created your server, log in as root and run the following command:

wget -O warpspeed-provisioner.sh https://raw.githubusercontent.com/warpspeed/warpspeed/master/provision-manual.sh; bash warpspeed-provisioner.sh

The manual provisioner will ask a few questions. Be prepared with an SSH public key to use for authentication to the server. You will also be able to customize what stack is installed on your server. Look in the installers folder of this repository to see what options are available.

If you don't already have an SSH key set up, follow this great guide here: https://help.github.com/articles/generating-ssh-keys/.

Once your server is provisioned, you should be able to SSH to your server by typing the following at your terminal:

ssh warpspeed@server-ip-here

Server Management

Once provisioned, you can easily manage your server with the warpspeed command. Just type warpspeed after you have logged into your server and you will see this:

Usage: warpspeed [COMMAND] [PARAMS] [OPTIONS]...
  This is the WarpSpeed.io server management utility.
  For complete information, visit: warpspeed.io.

Available commands:

  site:create [TYPE] [NAME] [OPTIONS]...
  site:remove [NAME] [OPTIONS]...
  site:reload [NAME]

  mysql:db [DBNAME] [USER] [PASS]
  mysql:backup [DBNAME]

  postgres:db [DBNAME] [USER] [PASS]
  postgres:backup [DBNAME]

  update

The TYPE for the site:create command can be any of the following:

html
node
php
python
ruby

The OPTIONS for the site:create command can be any of the following:

--force     # Forces overwrite of existing configuration for a site folder that is already present.
--push      # Creates a push repository so that code can be push deployed.
--wildcard  # Setups us wildcards for nginx so that the site will respond to *.domain.com

For complete information on available commands please visit: https://warpspeed.io.

License

© Turner Logic, LLC. Distributed under the GNU GPL v2.0.

About

WarpSpeed.io provisioning and management for production servers.

License:GNU General Public License v2.0


Languages

Language:Shell 94.3%Language:Nginx 2.5%Language:PHP 1.3%Language:Python 0.7%Language:JavaScript 0.6%Language:HTML 0.4%Language:Ruby 0.3%