gobuffalo/authrecipe

Problems starting up this app

Closed this issue · 0 comments

Hi, thanks for buffalo! just trying to get started with it to see if it will fit my needs on a job tracking app I need to build. And auth was the first step.

Had a couple of issues getting started with this repo, after cloning;

  • Installed dependencies with:
go get gopkg.in/yaml.v1
go get
  • After creating the db, need to do a:
buffalo db migrate

To get the users table set up

  • Had to change main.go to launch the app with:
log.Fatal(app.Start("0.0.0.0:3000"))

But not sure if that was the correct thing to do