From ef9b241cfdf7df99be676114126607f17bd557e5 Mon Sep 17 00:00:00 2001 From: dan-s Date: Sat, 28 Feb 2026 00:37:44 -0600 Subject: [PATCH] cleanup --- .gitignore | 32 ++++++++++++++++++++++++++++++-- start.sh | 4 +++- start_server.sh | 6 ++++++ 3 files changed, 39 insertions(+), 3 deletions(-) create mode 100644 start_server.sh diff --git a/.gitignore b/.gitignore index 173fd49..8c9efe3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,33 @@ +# Compiled binaries main grpcfrontend -cert.pem -key.pem lightwalletd + +# TLS certificates and keys +*.pem + +# Database files +*.db +*.sqlite + +# Logs +*.log + +# Go test binaries and output +*.test +*.out +*.prof + +# IDE and editor files +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# Temporary files +/tmp/ + +# Build output +/dist/ +/build/ diff --git a/start.sh b/start.sh index 5e898e1..8243c5d 100755 --- a/start.sh +++ b/start.sh @@ -9,4 +9,6 @@ #./lightwalletd -bind-addr localhost:9067 -conf-file ~/.hush/HUSH3/HUSH3.conf -no-tls # using ipv6 localhost -./lightwalletd -bind-addr ip6-localhost:9067 -conf-file ~/.hush/HUSH3/HUSH3.conf -no-tls +#./lightwalletd -bind-addr ip6-localhost:9067 -conf-file ~/.hush/HUSH3/HUSH3.conf -no-tls + +./lightwalletd -bind-addr lite.dragonx.is:9069 -conf-file ~/.hush/DRAGONX/DRAGONX.conf -no-tls & diff --git a/start_server.sh b/start_server.sh new file mode 100644 index 0000000..ea63c3f --- /dev/null +++ b/start_server.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +# set -e + + +./lightwalletd -bind-addr lite.dragonx.is:9069 -conf-file ~/.hush/DRAGONX/DRAGONX.conf -no-tls