Category Archives: Dev

Springboot


title: “Springboot”
date: 2019-03-27T13:32:44
slug: springboot


Set Springboot Profile by environment variable

export SPRING\_PROFILES\_ACTIVE=DEVEL

Set Profile by parameter

java -Dspring.profiles.active=development -jar build/libs/gs-rest-service-0.1.0.jar

rspec


title: “rspec”
date: 2019-03-16T10:28:37
slug: rspec


ruby -v
gem install rspec

Gemfile:

gem 'rspec'
bundle

Install webhook on Centos7

yum -y install epel-release
yum -y install centos-release-scl-rh centos-release-scl rubygem-bundler
yum --enablerepo=centos-sclo-rh -y install rh-ruby23
scl enable rh-ruby23 bash
ruby -v
gem install rspec webmock