repositorypackage
0.0.0-20231114155107-abcb10cfd10b
Repository: https://github.com/opticalflyer/hld.git
Documentation: pkg.go.dev
# README
hld
Fiber optic network high-level design
db setup
psql postgres
CREATE DATABASE hld WITH OWNER = hld;
\c hld
CREATE EXTENSION postgis;
CREATE TABLE roads ( id SERIAL PRIMARY KEY, geo_data GEOMETRY );
deployment
git pull
go build .
systemctl restart hld