No description
This repository has been archived on 2026-02-19. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • C++ 83.1%
  • CMake 12%
  • Shell 4.9%
Find a file
Roger Zanoni ca1ec73849 Fix context creation
Summary: Context was being created and destroyed in "bind()" function

Reviewers: rodrigo.golive

Reviewed By: rodrigo.golive

Differential Revision: http://phabricator.dbolabs.com/D23
2014-02-18 15:18:57 -04:00
database/scripts Add a script to import test data 2014-02-17 16:47:26 -04:00
scripts Add a script to import test data 2014-02-17 16:47:26 -04:00
src Fix context creation 2014-02-18 15:18:57 -04:00
.gitignore Add .arcconfig to gitignore file 2014-02-14 16:08:28 -04:00
CMakeLists.txt Handling program options and starting a database class 2014-02-12 20:40:13 -04:00
README.md Add a basic listening server 2014-02-18 10:58:42 -04:00

survivalserver

I know, we need a better name

Dependencies

boost boost-libraries postgre-sql (database and libraries) zmq

Building:

Run (in the root directory):

mkdir build cd build cmake .. make

Database:

To create all tables needed by the game run:

scripts/create-tables

To insert test data, run:

scripts/insert-data

These scripts assume you have a proper installed and running postgre database and access to postgres user account.