This file contains hidden or 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
import React from "react"; | |
class Step extends React.Component { | |
render() { | |
const { | |
isActive, | |
displayPrevious, | |
displayNext, | |
displaySubmit, |
This file contains hidden or 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
import React from "react"; | |
import { render } from "react-dom"; | |
import { StepList } from "./StepList"; | |
import { Step } from "./Step"; | |
const PageTwo = () => ( | |
<h2>We have a second page.</h2> | |
) | |
const PageThree = () => ( |
This file contains hidden or 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
import React from "react"; | |
import { render } from "react-dom"; | |
import { StepList } from "./StepList"; | |
import { Step } from "./Step"; | |
const PageTwo = () => ( | |
<h2>We have a second page.</h2> | |
) | |
const PageThree = () => ( |
- Change iterm2 theme to solarized
- ohmyzsh/ohmyzsh#4756
- https://github.com/powerline/fonts
- change the fonts in iterm
This file contains hidden or 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
# Dockerfile | |
# using debian:jessie for it's smaller size over ubuntu | |
# FROM debian:jessie | |
FROM ubuntu:xenial | |
# Replace shell with bash so we can source files | |
RUN rm /bin/sh && ln -s /bin/bash /bin/sh | |
# Set environment variables | |
ENV appDir /var/www/app/current |
This file contains hidden or 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
swagger: '2.0' | |
info: | |
title: RVI HTTP API Spec | |
version: '0.0.5' | |
schemes: | |
- http | |
- https | |
consumes: | |
- application/json | |
produces: |