Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 735 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 735 Bytes

Introduction

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.

Setup

Download and install the app

Run this in terminal:

go get github.com/gylaz/jobs

The application should now be installed in your $GOPATH/src.

Create the database

Create jobs_app database using psql command:

psql postgres -c "CREATE DATABASE jobs_app"

Run migrations

goose up

Running

Run the app via the revel command:

revel run github.com/gylaz/jobs