Newer
Older
AR-test / websever.rb
@Satou Fumiya Satou Fumiya on 16 May 2022 150 bytes create:ARテスト用のリポジトリ作成
require 'webrick'

server = WEBrick::HTTPServer.new({ 
    :DocumentRoot => './',
    :BindAddress => '127.0.0.1',
    :Port => 20080
})

server.start