aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorhitlerrip <git@hitler.rip>2025-07-29 19:17:50 +0200
committerhitlerrip <git@hitler.rip>2025-07-29 19:17:50 +0200
commit3c0ebfbbcd9d41b936ede928af05db9f15733d1a (patch)
tree0cfda95dd3525debbda0e0b4ece13501b5d81f48 /README.md
downloadhitler-clicker-3c0ebfbbcd9d41b936ede928af05db9f15733d1a.tar.gz
hitler-clicker-3c0ebfbbcd9d41b936ede928af05db9f15733d1a.tar.bz2
hitler-clicker-3c0ebfbbcd9d41b936ede928af05db9f15733d1a.zip
init
base to build this game off of
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d1eaec3
--- /dev/null
+++ b/README.md
@@ -0,0 +1,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...
+```