'update'
[vchess.git] / server / README.md
index f88844c..ed41ad9 100644 (file)
@@ -4,30 +4,37 @@ Instructions to run the server locally.
 
 ## Requirements
 
- - Node.js + npm (any recent version)
- - SQLite (version 3)
+- Node.js + npm (any recent version)
+- SQLite (version 3)
 
 ## Installation
 
- 1. Execute db/\*.sql scripts to create and fill db/vchess.sqlite
+1. Execute db/\*.sql scripts to create and fill db/vchess.sqlite
 
 ```
 cd server/db
-sqlite3 vchess.sqlite.db
+sqlite3 vchess.sqlite
 sqlite> .read create.sql
 sqlite> .read populate.sql
 sqlite> .exit
 ```
 
- 2. Rename and edit `config/parameters.js.dist` into `config/parameters.js`
+2. Rename and edit `db/dbconnect.py.dist` into `db/dbconnect.py`.
+Then synchronize the GameStat table:
 
- 3. Install npm modules
- ```
- npm install
- ```
+```
+./sync_gamestat.py
+```
+
+2. Rename and edit `config/parameters.js.dist` into `config/parameters.js`
+
+3. Install npm modules
+
+```
+npm install
+```
 
- ## Running
+## Running
 
 ```
 npm start