aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: a3fe96df32462a78af02ccb5eff7b0d0c61f5a26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Juick
---

Подготовка:

```
git clone git@x.juick.com:/srv/git/juick.git

git submodule update --init

cd juick

echo "spring.h2.console.enabled=true" > juick-www/src/main/resources/application.properties

./gradlew :juick-server:bootRun

```

По адресу http://localhost:8080/h2-console доступна консоль бд. Параметры подключения:

```
Driver Class: org.h2.Driver
JDBC URL: jdbc:h2:mem:testdb
User Name: sa
Password: пустой
```

Необходимо подключиться и создать пользователя:

```
	insert into users (id, nick, passw) values (1, 'ugnich', 'fuckthis');
	insert into logins (user_id, hash) values (1, 'fuckthisverymuch');
```