git clone -b stable https://github.com/Solidaric-org/ladenliebe-org.git
# Mariadb / Mysql Datenbank anlegen
CREATE DATABASE IF NOT EXISTS ladenliebe_db CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
# Zugriff gewähren
GRANT ALL PRIVILEGES ON ladenliebe_db.* TO 'll_user'@'localhost' IDENTIFIED BY 'll_password' WITH GRANT OPTION;
# DB aktualisieren
FLUSH PRIVILEGES;
- Golang packages installieren und Service binary erstellen
Golang 1.14 sollte verwendet werden
# in den pfad mit den backend sourcen
cd backend
# go packages auflösen und installieren
GO111MODULE=on go get ./...
# Binary erstellen
GO111MODULE=on GOCGO_ENABLED=0 go build -o ladenliebe_backend
# Backend Service starten
./ladenliebe_backend --port 8080 --db ll_user:ll_password@(localhost)/ladenliebe_db?charset=utf8&parseTime=True&loc=Local
- Nodejs Vue Frontend erstellen
# npm module installieren
npm install
# Vue application erstellen mit DEV Server
npm run serve
- Browser öffnen mit Adresse: https://localhost:8081
Project homepage - Live Prototype at ladenliebe.org
#WirVsVirusHack - you will find a detailed description at DevPost
Authors: Team LadenLiebe
Copyright (c) 2020 Team LadenLiebe, released under the MIT license