Guacamoly alternatives and similar software solutions
Based on the "Note-taking & Editors" category.
Alternatively, view Guacamoly alternatives based on common mentions on social networks and blogs.
-
Paperwork
DISCONTINUED. Paperwork - OpenSource note-taking & archiving alternative to Evernote, Microsoft OneNote & Google Keep -
Laverna
Laverna is a JavaScript note taking application with Markdown editor and encryption support. Consider it like open source alternative to Evernote. -
Standard Notes
DISCONTINUED. An end-to-end encrypted notes app for digitalists and professionals. https://standardnotes.com [Moved to: https://github.com/standardnotes/app] -
OpenNote
OpenNote was built to be an open web-based alternative to Microsoft OneNote (T) and EverNote. -
DocPHT ๐
DISCONTINUED. With DocPHT you can take notes and quickly document anything and without the use of any database. -
Jotter
Jotter is a lightweight, no database, powerful web notebook that lets you create and manage notes online safely, quickly & easily.
CodeRabbit: AI Code Reviews for Developers
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Guacamoly or a related project?
README
Meemo
Meemo is a personal data manager. It lets you simply input any kind of information like notes, thoughts, ideas as well as acts as a bookmarkmanager and todo list. The user interface resembles a news feed organized with tags. Full text search further allows you to quickly find information in your pile of accumulated data.
For better bookmarking, there are chrome and firefox webextensions available.
Installation
or using the Cloudron command line tooling
cloudron install --appstore-id de.nebulon.guacamoly
To you run Meemo outside a Cloudron environment, those dependencies are required:
nodejs >= 4.1.1
mongodb >= 2.6
and the installation consist of:
cd meemo
npm i
./node_modules/.bin/gulp
./app.js
Possible env variables for configuration are:
PORT=3000
BIND_ADDRESS=0.0.0.0
CLOUDRON_APP_ORIGIN="https://example.com"
CLOUDRON_="mongodb://username:[email protected]:27017/meemo" # username and password are optional
ATTACHMENT_DIR="./storage"
# using LDAP user management
CLOUDRON_LDAP_URL="ldap://my.ldap.server"
CLOUDRON_LDAP_USERS_BASE_DN="ou=users,dc=example"
CLOUDRON_LDAP_BIND_DN="cn=admin,ou=users,dc=example"
CLOUDRON_LDAP_BIND_PASSWORD=""
# using local file user management via admin cli tool
LOCAL_AUTH_FILE=".users.json" # also pass this for the admin tool to find the correct file
# Email receiving is currently dropped and will be only added in future versions again
# to enable email receiving
CLOUDRON_MAIL_IMAP_SERVER="my.mail.server"
CLOUDRON_MAIL_IMAP_PORT=993
CLOUDRON_MAIL_IMAP_USERNAME=""
CLOUDRON_MAIL_IMAP_PASSWORD=""
CLOUDRON_MAIL_DOMAIN="example.com"
Building
The app package can be built using the Cloudron command line tooling.
cd meemo
cloudron build
cloudron install
Development
The app can also be run locally for development. It depends on a locally running mongodb and optionally on an instance of the ldap test server.
cd meemo
npm install
# with LDAP
CLOUDRON_LDAP_BIND_DN="cn=admin,ou=users,dc=example" CLOUDRON_LDAP_BIND_PASSWORD="password" CLOUDRON_LDAP_USERS_BASE_DN="ou=users,dc=example" CLOUDRON_LDAP_URL="ldap://localhost:3002" ./app.js
# without LDAP
./admin user-add --username test --password test --display-name "Test User"
./app.js