An online poker tracker for PokerTH (https://pokerth.net). Continuation of https://github.com/Pik-9/PokerTH-Tracker https://finda.fish
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Daniel Steinhauer c3d2c060e8
Pass matomo info via environment variable.
2 years ago
api Query for games with INNER JOIN in order to omit empty games. 2 years ago
client Show version in footer. 2 years ago
misc Add README text. 2 years ago
.eslintignore Do some code linting. 2 years ago
.eslintrc.json Add english description cards to landing page. 2 years ago
.gitignore Add log file import controller - No token, yet. 2 years ago
.npmrc Add minimum node.js version to package.json. 2 years ago
LICENSE Add license and README. 2 years ago
README.md Pass matomo info via environment variable. 2 years ago
nuxt.config.js Pass matomo info via environment variable. 2 years ago
package-lock.json Add matomo tracking. 2 years ago
package.json Add matomo tracking. 2 years ago
server.js Document exported js functions with JSDoc. 2 years ago

README.md

finda.fish

finda.fish is an online poker tracker for PokerTH. It is inspired by professional products like Poker Tracker or Holdem Manager. While its predecessor only analyzes the local log files, this tracker attempts to collect game logs from all its users and uses the accumulated data for analysis.

Deployment

This software needs a MySQL/MariaDB Database to store its game data. Make sure to create one. Running this application server is as simple as:

node server.js

But you may need to pass a few environment variables:

Variable Meaning Default
NODE_ENV The environment. Note that the app behaves differently in development and production. development
DB_HOST The database server. localhost
DB_USER The database user name. fish
DB_PASS The password for the database user. <empty>
DB_NAME The database name to connect to. finda_fish_dev
DB_DEBUG Debug mode - Database queries get written to stdout. false
MATOMO_URL The URL of your matomo tracker. (optional) <empty>
MATOMO_SITEID The site id of your matomo tracker. (optional) <empty>

The development environment is unsafe and should only be used for ...well development. Make sure to pass

export NODE_ENV=production

before exposing this app to the internet.

Player type analysis

Every known player is categorized according to his statistical values. See this graph: Player type categorization

License

finda.fish is free software. You can redistribute it under the terms of the GNU Affero General Public License in version 3 or at your choice any later version. See: AGPLv3