Please try, Sorry but this is Japanese only --> hamcco demo page
Please run rake task as follows.
$ rake product
Then, you can see "production" directory, where exported hamcco's all production modules.
Please copy "production" directory to your server.
Note. Docker and docker-compose must be installed on your server.
You can build docker images of hamcco by using docker-compose.
# docker-compose build
It will build two docker images. One of those is a nginx, and the other is a hamcco's application image that contains unicorn and sinatra based on ruby image.
Next, you can execute nginx and hamcco docker containers, like this.
# docker-compose up -d
The -d option means containers run background.
Stop hamcco and nginx containers.
# docker-compose stop
Start hamcco and nginx containers.
# docker-compose start
That's it.