Git Product home page Git Product logo

relieve's Introduction

Relieve endpoint

Development

  1. setup postgres database with the following schema

    sudo su - postgres
    createuser -P relieve
    createdb -O relieve relieve
    
    note:
    update pg_hba.conf from
    local  all      all          peer
    to
    local  all      all          md5
    
    psql -U relieve -d relieve
    
  2. export port and datatabase environment variable

    export PORT=4000
    export DATABASE_URL=postgres://relieve:relieve@localhost/relieve
    
  3. Build & run it

    go install
    relieve
    
  4. start testing endpoint

Deploy to heroku

Create app with custom buildpack

heroku apps:create relieve-endpoint -b https://github.com/kr/heroku-buildpack-go.git
echo 'web: relieve' > Procfile
heroku addons:add heroku-postgresql

Push code to heroku

godep save
git add . && git commit -m "deploy to heroku"
git push heroku master

Make sure godep installed

go get github.com/tools/godep

Update heroku database

heroku pg:psql

and create the following schema

Database

Change column type text to integer

ALTER TABLE psikologs
    ALTER COLUMN psikolog_wisdom TYPE integer USING cast(psikolog_wisdom as int);

Add default to existing columns

ALTER TABLE posts
    ALTER COLUMN post_date SET DEFAULT CURRENT_TIMESTAMP;

ALTER TABLE psikologs
    ALTER COLUMN psikolog_wisdom SET DEFAULT 0;

ALTER TABLE posts
    ALTER COLUMN post_report_count SET DEFAULT 0;

ALTER TABLE comments
    ALTER COLUMN comment_date SET DEFAULT CURRENT_TIMESTAMP;

relieve's People

Contributors

pyk avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.