mirror of
https://github.com/slynn1324/tinypin.git
synced 2026-01-23 10:25:34 +00:00
No description
| bulma-custom | ||
| chrome-extension | ||
| static | ||
| templates | ||
| .dockerignore | ||
| .gitignore | ||
| docker-build.sh | ||
| docker-run.sh | ||
| Dockerfile | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| server.js | ||
| tinypin-icon.psd | ||
| TODO.md | ||
tinypin
A self-hosted, minimalistic image collection board.
running
git clone https://github.com/slynn1324/tinypin.git
cd tinypin
npm install
node server.js
docker
docker run -d --name tinypin -p 3000:3000 -v "$(pwd)/data:/data" --restart=unless-stopped slynn1324/tinypin
building
Feel free to build your own docker images, maybe with your own customizations.
git clone https://github.com/slynn1324/tinypin.git
cd tinypin
docker build -t tinypin .
or
./docker-build.sh
chrome extension
- visit
chrome://extensions - enable developer mode
- click
Load Unpacked - chose the
chrome-extensionfolder - click
detailsfor theadd to tinypinextension - click
extension options - update the url for your tinypin installation
I'll see about publishing it in time....
security
There is trivial security on the web pages to allow for multiple user support. I make no claim to the robustness of the security for the content nor the hashed credential storage in the database. Additional layers of security should be considered before exposing the application to the internet.
credits
client
- css framework > bulma.io
- js framework > reef
- boards icon > squares by Andrejs Kirma from the Noun Project
- pin icon > pinned by Gregor Cresnar from the Noun Project
- web icon > website by Supriadi Sihotang from the Noun Project
- edit icon > [edit by TTHNga from the Noun Project](https://thenounproject.com/term/edit/3122457/
- logout icon > Log Out by Gregor Cresnar from the Noun Project
- trash icon > Trash by ICONZ from the Noun Project
- missing icon > dots-square by Jeff Hilnbrand
- hidden icon > hidden by vittorio longo from the Noun Project
- about icon > Info by Sriti Chamola from the Noun Project
server
- language & runtime > node.js
- database > sqlite
- library > better-sqlite3
- library > express
- library > body-parser
- library > cookie-parser
- library > node-fetch
- library > sharp
- library > yargs