feat: Implement a web-based Bluetooth label printer application with live preview and CPCL generation capabilities.

This commit is contained in:
Wartana
2026-02-28 17:18:46 +08:00
commit d476c06358
5 changed files with 759 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
server {
listen 80;
server_name btlabel.oncloud.my.id;
location / {
root /home/wartana/myApp/btlabel;
index index.html;
try_files $uri $uri/ =404;
}
}