Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 549 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 549 Bytes

eiseno

The admin for Onesie. You can view the serving code at icco/onesie.

Documentation

  • To generate a new migration:
go get -u github.com/mattes/migrate
migrate -url postgres://localhost/eiseno?sslmode=disable -path ./db/migrations create migration_file_xyz
  • To Install Deps
go get -u github.com/tools/godep
godep get -v ./...
  • To update deps
rm -rf vendor GoDeps
go get -u github.com/tools/godep
godep save -d -v ./...
git add vendor GoDeps