aboutsummaryrefslogtreecommitdiff
path: root/web/interface.rb
blob: 5914866b57f64cdfc89415ec00efe630471e0b4c (plain)
1
2
3
4
5
6
7
8
9
require 'sinatra'
require_relative '../db'

$config = Config.first

get '/' do
  @posts = Post.all
  erb :index
end