Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soulteary/flare
🏂 Challenge all bookmarking apps and websites directories, Aim to Be a best performance monster.
https://github.com/soulteary/flare
bookmarks self-hosted start-page
Last synced: 4 days ago
JSON representation
🏂 Challenge all bookmarking apps and websites directories, Aim to Be a best performance monster.
- Host: GitHub
- URL: https://github.com/soulteary/flare
- Owner: soulteary
- License: agpl-3.0
- Created: 2022-02-18T16:11:56.000Z (over 2 years ago)
- Default Branch: dev-for-1.x
- Last Pushed: 2024-07-10T19:01:39.000Z (4 months ago)
- Last Synced: 2024-10-23T19:28:17.823Z (11 days ago)
- Topics: bookmarks, self-hosted, start-page
- Language: Go
- Homepage: https://soulteary.com/2022/02/23/building-a-personal-bookmark-navigation-app-from-scratch-flare.html
- Size: 3.11 MB
- Stars: 143
- Watchers: 3
- Forks: 37
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Flare
Challenge all bookmarking apps and websites directories, Aim to Be a best performance monster.
🚧 **Code is being prepared and refactored, commits are slow.**
## Feature
**Simple**, **Fast**, **Lightweight** and super **Easy** to install and use.
- Written in Go (Golang) and a little Modern vanilla Javascript only.
- Doesn't depend any database or any complicated framework.
- Single executable, no dependencies required, good docker support.
- You can choose whether to enable various functions according to your needs: offline mode, weather, editor, account, and so on.## ScreenShot
TBD
## Documentation
TBD
- Browse automatically generated program documentation:
- `godoc --http=localhost:8080`## Directory
```bash
├── build build script
├── cmd user cli/env parser
├── config config for app
│ ├── data data for app running
│ ├── define define for app launch
│ └── model data model for app
├── docker docker
├── embed resource (assets, template) for web
├── internal
│ ├── auth user login
│ ├── fn fn utils
│ ├── logger logger
│ ├── misc
│ │ ├── deprecated
│ │ ├── health
│ │ └── redir
│ ├── pages
│ │ ├── editor
│ │ ├── guide
│ │ └── home
│ ├── resources static resource after minify
│ ├── server
│ ├── settings
│ └── version
└── main.go
```