- upload page
- edit page
- proper units on data
- images
- user accounts
- real data
- sorting
after mariadb install run: sudo mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
systemctl start mariadb
sudo mariadb
CREATE DATABASE TheWinery
CREATE USER 'JohnDoe'@'localhost' IDENTIFIED BY 'some_pass';
GRANT ALL PRIVILEGES ON mydb.* TO 'JohnDoe'@'localhost';
mariadb -u JohnDoe -p
USE TheWinery;
SOURCE /full/path/to/dump.sql;
nano .env
DBUSER=JohnDoe
DBPASS=some_pass
DBNAME=TheWinery
go run .
localhost:8080
'/c' to exit from '->'
'exit' to exit normally