All Projects → fr0tt → benotes

fr0tt / benotes

Licence: MIT license
An open source self hosted notes and bookmarks taking web app.

Programming Languages

PHP
23972 projects - #3 most used programming language
Vue
7211 projects
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to benotes

Memex
Simple bookmarks and notes
Stars: ✭ 258 (-0.77%)
Mutual labels:  notes, bookmarks
Nb
CLI and local web plain text note‑taking, bookmarking, and archiving with linking, tagging, filtering, search, Git versioning & syncing, Pandoc conversion, + more, in a single portable script.
Stars: ✭ 3,846 (+1379.23%)
Mutual labels:  notes, bookmarks
Notemarks
A git based labeling app to manage notes, documents, and bookmarks.
Stars: ✭ 61 (-76.54%)
Mutual labels:  notes, bookmarks
notes
Simple text editor for your Markdown and LaTeX notes.
Stars: ✭ 24 (-90.77%)
Mutual labels:  notes
Machine-Learning-Notes
Lecture Notes of Andrew Ng's Machine Learning Course
Stars: ✭ 60 (-76.92%)
Mutual labels:  notes
signature
HMAC and RSA signature for Laravel and Lumen
Stars: ✭ 26 (-90%)
Mutual labels:  lumen
marknotes
📝 You’re taking a lot of notes and need a solution to manage them i.e. put your knowledge base in one central place and being able to retrieve quickly information’s, display them nicely through the browser as a HTML page or a slideshow, export them in many file formats (docx, odt, pdf, txt, …). Sensitive information’s can be encrypted and notes …
Stars: ✭ 73 (-71.92%)
Mutual labels:  notes
laravel-redis-sentinel-drivers
Redis Sentinel integration for Laravel and Lumen.
Stars: ✭ 100 (-61.54%)
Mutual labels:  lumen
cache
Laravel & Lumen Cache Service | File and Redis cache system
Stars: ✭ 19 (-92.69%)
Mutual labels:  lumen
gonotes
Command line tool to access your kindle clippings
Stars: ✭ 23 (-91.15%)
Mutual labels:  notes
dcs-notes.github.io
Unofficial notes for modules offered in the first year of Computer Science by the University of Warwick
Stars: ✭ 22 (-91.54%)
Mutual labels:  notes
McGill-Public
Part of McGill U3/U4 that can be made public
Stars: ✭ 50 (-80.77%)
Mutual labels:  notes
bens-obsidian-boilerplate
An opinionated kit to provide people some inspiration and ideas for their own workflows.
Stars: ✭ 174 (-33.08%)
Mutual labels:  notes
UnimelbSharedFiles
No description or website provided.
Stars: ✭ 16 (-93.85%)
Mutual labels:  notes
obsidian-publish-mkdocs
A Template to Publish Obsidian/Foam Notes on Github Pages (uses MkDocs)
Stars: ✭ 219 (-15.77%)
Mutual labels:  notes
writebar
Experimental distraction-free text editor, based on the Macbook pro TouchBar
Stars: ✭ 37 (-85.77%)
Mutual labels:  notes
aws-certified-developer-associate-udemy-notes
AWS Certified Developer Associate Udemy Notes
Stars: ✭ 20 (-92.31%)
Mutual labels:  notes
notesnook
A fully open source & end-to-end encrypted note taking alternative to Evernote.
Stars: ✭ 5,098 (+1860.77%)
Mutual labels:  notes
study-snap
📓📲 Flutter app for managing study materials in form of photos.
Stars: ✭ 34 (-86.92%)
Mutual labels:  notes
paper-wallet
stellar.github.io/paper-wallet/
Stars: ✭ 41 (-84.23%)
Mutual labels:  lumen

Benotes Logo

Benotes

Benotes Thumbnail

An open source self hosted web app for your notes and bookmarks side by side.

This project is currently in Beta. You may encounter bugs or errors.

Features

  • URLs are automatically saved with an image, title and description
  • supports both markdown and a rich text editor
  • can be installed as a PWA on your mobile devices (and desktop)
  • share content via this app (if installed as an PWA and supported by your browser)
  • collections can be shared via a public available URL
  • links can be instantly pasted as new posts
  • can be hosted almost anywhere thanks to its use of the lightweight Lumen framework and well supported PHP language
  • works with and without a persistent storage layer (both filesystem and S3 are supported)
  • can also be hosted via Docker or on Heroku
  • protect your data with daily backups

Installation & Upgrade

Currently their are three options for you to choose from:

Issues

Feel free to contact me if you need any help or open an issue or a discussion.

Q: Having trouble with reordering posts ?

Use this command in order to fix it.

php artisan fix-position

or if you have already installed newer php versions on your system

/usr/bin/php7.4 artisan fix-position

Backup

Currently SQL Server and backing up S3 storage is not supported.

Backups can be triggered manually by executing the following command:

php artisan backup:run

Or schedule them by adding this line to your servers cron entries:

0 * * * * cd /path-to-your-project && /usr/bin/php7.4 artisan schedule:run >> /dev/null 2>&1

(This will check every hour if there is any task to run)

If you use docker add to your host system cron entries:

0 * * * * cd /path-to-your-project && docker exec -it benotes php artisan schedule:run >> /dev/null 2>&1

By default scheduled backups are created every night. If you wish to change that add the following to your .env file:

BACKUP_INTERVAL = 0 0 */7 * *  // this would translate to a weekly backup

If you wish to store your data with S3 compatible Object Storage (such as AWS S3, Digital Ocean Spaces, Minio, etc.), add the following to your .env file:

BACKUP_DISK           = s3

AWS_ACCESS_KEY_ID     = yourKeyId
AWS_SECRET_ACCESS_KEY = yourAccessKey
AWS_DEFAULT_REGION    = us-east-1
AWS_BUCKET            = yourCreativeBucketName
AWS_ENDPOINT          = endpointUrl

Rest API

Further information can be found here: Rest API Documentation

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].