a self-hostable link shortener
youre gonna need Nodejs installed on the host computer.
then clone the repo and run npm i
. after that youre gonna want to create a .env
file.
heres a template:
DB_HOST="localhost"
DB_USER="admin"
DB_PASSWORD=""
DB_DATABASE="dumolink"
the app requires you to be using mysql.
once you are done with that you can start running the server with `npm start`. i recommend you use `pm2` if youre self hosting.
you can use the setup steps but use npm run devstart
instead of npm start
.