aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: d1eaec3f3940c6b9b464b7a3b11b567f4f891558 (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
# Hitler Clicker

Hitler Clicker is a simple game where you have to choose one of 3 teams to click for.
The team with the most clicks wins, except that the game is endless.

- - -

## Test Environment

There is an included testing environment. Requirements are Docker and PHP.
Docker is generally not needed, you can replace it with any other DB Server.
PHP has to have the `pdo_mysql` driver enabled.

```sh
# start mariadb
cd ./backend/docker-test-env/
docker compose up -d

# start api
cd .. #./backend/
php -S localhost:8000

# start frontend
# coming soon...
```