A GO implementation of a MySQL backed wiki engine.
Docker and docker-compose are used for the deployment
docker-compose build
docker-compose upPoint the browser at (http://localhost:8080/view/test)
DB creation is not dockerized yet. Needs to be created manually.
Start the mysql container with
docker-compose upStart a shell:
docker exec -ti gowikidb_mysql_1 mysql -u root -prootCopy and paste gowiki.sql to the terminal. This will create the database
and the article tables.