This is a simple application to generate QR Codes, built using C++ (Drogon) for the backend and Svelte for the frontend. The project allows you to generate and download QR Codes in PNG format from a custom input string.
Before getting started, make sure you have the following tools installed:
Clone the repository:
git clone https://github.com/0Flopper/qrcode-generator.git
Backend (Drogon)
Navigate to the backend build folder, compile and run the server:
cd qrcode-generator/qr-back-end-drogon/build
cmake ..
make
./qr-server-drogon
Frontend (Svelte)
Navigate to the frontend folder, install dependencies and start the server:
cd qrcode-generator/qr-front-end-svelte/
npm install
npm run dev