0d0f2767b9 | ||
---|---|---|
WebApp | ||
dependencies | ||
templates | ||
test/scripts | ||
.gitignore | ||
.gitmodules | ||
BUILD-Windows.md | ||
BUILD-ubuntu.md | ||
CMakeLists.txt | ||
LICENSE | ||
README.md | ||
config-Windows.json | ||
config-ubuntu.json | ||
db.sql |
README.md
bserv
A Boost Based C++ HTTP JSON Server.
Quick Start
To build the dependencies & the project, refer to
BUILD-Windows.md
orBUILD-ubuntu.md
WebApp/bserv
contains the source code forbserv
.WebApp/WebApp
is a sample project.config-Windows.json
andconfig-ubuntu.json
are two sample config file forWebApp
's startup parameters. It should be configured and renamed toconfig.json
before you startWebApp
.- To use
WebApp
, you should setup the database as well.
Database
You can import the sample database:
-
Create the database in
psql
:create database bserv;
-
Create the table in the
shell
using a sample script:psql bserv < db.sql