This application is intended to act as a job post list. It is written in Go using the revel framework.
This app relies on gorp as the ORM-like library and goose for migrations.
Run this in terminal:
go get github.com/gylaz/jobs
The application should now be installed in your $GOPATH/src
.
Create jobs_app
database using psql
command:
psql postgres -c "CREATE DATABASE jobs_app"
goose up
Run the app via the revel
command:
revel run github.com/gylaz/jobs