This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is the site I want to see at beta.ialexander.io | |
# WSGI Stuff | |
WSGIPythonPath /var/www/Ullmannite-Staging | |
<VirtualHost *:80> | |
# WSGI Stuff | |
WSGIScriptAlias / /var/www/Ullmannite-Staging/Ullmannite/wsgi.py | |
# Identification |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Linked files | |
require 'capistrano/linked_files' | |
# Load DSL and set up stages | |
require 'capistrano/setup' | |
# Include default deployment tasks | |
require 'capistrano/deploy' | |
# Include tasks from other gems included in your Gemfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ Eximius-in-Rails git:(master) ✗ cap production deploy --trace | |
** Invoke production (first_time) | |
** Execute production | |
** Invoke load:defaults (first_time) | |
** Execute load:defaults | |
** Invoke rvm:hook (first_time) | |
** Execute rvm:hook | |
DEBUG [badd2f09] Running /usr/bin/env [ -d ~/.rvm ] as [email protected] | |
DEBUG [badd2f09] Command: [ -d ~/.rvm ] | |
DEBUG [badd2f09] Finished in 0.982 seconds with exit status 0 (successful). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Laravel Framework version 5.1.24 (LTS) | |
Usage: | |
command [options] [arguments] | |
Options: | |
-h, --help Display this help message | |
-q, --quiet Do not output any message | |
-V, --version Display this application version | |
--ansi Force ANSI output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ruby:latest | |
MAINTAINER Alexander Rhett Crammer <[email protected]> | |
# ENV Variables | |
ENV HOME /home/rails/eximius | |
# Dependencies required by Rails and RubyGems | |
RUN apt-get update -qq \ | |
&& apt-get install -y \ | |
build-essential \ |