Skip to content

anthonylewis/goweb

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Go / Gin / GORM Sample Application

To run this, you'll need the Go Programming Language, dep for dependency management, and a PostgreSQL database. Assuming you're using Homebrew on a Mac, this should install those for you:

brew install go dep postgresql

Start the database like this:

brew services start postgresql

Create a user and database named goweb:

createuser goweb --createdb
createdb goweb -U goweb

Use dep to install depenencies:

dep ensure

And you're finally ready to run the app:

go run main.go

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published