1 Commits
0.9.3 ... 0.9.1

Author SHA1 Message Date
abe3818ead fix assembly build 2019-11-02 15:24:26 +03:00
4 changed files with 8 additions and 11 deletions

View File

@ -10,7 +10,7 @@ In general installation process looks like:
sbt assembly sbt assembly
``` ```
Or alternatively you can download latest jar from releases page. Service can be run by using command: Service can be run by using command:
```bash ```bash
java -cp ./target/scala-2.13/ffxivbis-scala-assembly-0.1.jar me.arcanis.ffxivbis.ffxivbis java -cp ./target/scala-2.13/ffxivbis-scala-assembly-0.1.jar me.arcanis.ffxivbis.ffxivbis

View File

@ -1,6 +1,6 @@
create table players ( create table players (
party_id text not null, party_id text not null,
player_id bigserial unique, player_id bigserial,
created bigint not null, created bigint not null,
nick text not null, nick text not null,
job text not null, job text not null,
@ -9,7 +9,7 @@ create table players (
create unique index players_nick_job_idx on players(party_id, nick, job); create unique index players_nick_job_idx on players(party_id, nick, job);
create table loot ( create table loot (
loot_id bigserial unique, loot_id bigserial,
player_id bigint not null, player_id bigint not null,
created bigint not null, created bigint not null,
piece text not null, piece text not null,
@ -29,7 +29,7 @@ create unique index bis_piece_player_id_idx on bis(player_id, piece);
create table users ( create table users (
party_id text not null, party_id text not null,
user_id bigserial unique, user_id bigserial,
username text not null, username text not null,
password text not null, password text not null,
permission text not null); permission text not null);

View File

@ -27,11 +27,8 @@ me.arcanis.ffxivbis {
profile = "slick.jdbc.PostgresProfile$" profile = "slick.jdbc.PostgresProfile$"
db { db {
url = "jdbc:postgresql://localhost/ffxivbis" url = "jdbc:postgresql://localhost/ffxivbis"
user = "ffxivbis" user = "user"
password = "ffxivbis" password = "password"
connectionPool = disabled
keepAliveConnection = yes
} }
numThreads = 10 numThreads = 10
} }
@ -51,7 +48,7 @@ me.arcanis.ffxivbis {
web { web {
# address to bind, string, required # address to bind, string, required
host = "127.0.0.1" host = "0.0.0.0"
# port to bind, int, required # port to bind, int, required
port = 8000 port = 8000
} }

View File

@ -1 +1 @@
version := "0.9.3" version := "0.9.0"