$ rails new turboframes -d postgresql
$ cd turboframes
$ bin/setup
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
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
// Create variable i that holds an integer value | |
var i int | |
I'd like to build a simple web application in Go using Outside In Testing. This means starting by writing a test that pretends to be a user visiting the application and setting up expectations about what they should be seeing.
We'll be using the following:
Use Homebrew to install pyenv and pyenv-virtualenv:
$ brew install pyenv
$ brew install pyenv-virtualenv