modulepackage
0.0.0-20241124041204-bc94d4c5b16b
Repository: https://github.com/00duck/wishr-api.git
Documentation: pkg.go.dev
# README
Wishr
An open source, self-hosted wish list app for groups and families.
Database setup
Run mysql_secure_installation
and configure as needed.
mysql -u root
and enter the following:
create database wishr;
create user 'wishr'@'localhost' identified by 'password';
grant all privileges on wishr.* to 'wishr'@'localhost';
flush privileges;