No description
Find a file
Musselman f4ef1e319e
Some checks failed
/ Clone and Build (push) Has been cancelled
/ Push-Image (push) Has been cancelled
⬆️ Chore: Go get cascadia, html-to-markdown
2024-07-02 14:29:58 -05:00
.forgejo 💚 Chore: Improve Globbing for changed files 2024-07-02 14:29:16 -05:00
editor_templates Switch Repo to notatio/notatio 2023-11-20 22:10:40 -06:00
quadlets 📝 Docs: Add Quadlets and small changes to README 2024-06-30 00:46:43 -05:00
static 🎨 Chore: Format list.js 2024-06-26 11:00:36 -05:00
templates ✏️ Fix: Change Git Repo Links 2024-06-27 15:50:23 -05:00
.env.example Switch Repo to notatio/notatio 2023-11-20 22:10:40 -06:00
.gitignore 🙈 Chore: Clean up .gitignore 2024-06-26 13:07:43 -05:00
CODE_OF_CONDUCT.md 📝 Docs: Add Code of Conduct and Contribution Guide 2024-06-29 23:39:23 -05:00
CONTRIBUTING.md 📝 Docs: Add Code of Conduct and Contribution Guide 2024-06-29 23:39:23 -05:00
database.go Switch Repo to notatio/notatio 2023-11-20 22:10:40 -06:00
docker-compose.yaml Switch Repo to notatio/notatio 2023-11-20 22:10:40 -06:00
Dockerfile ⬆️ Chore: Upgrade Dockerfile image versions 2024-07-02 14:14:03 -05:00
editor.go ♻️ Refactor: Remove unused variable in handleError 2024-06-26 10:03:24 -05:00
export.go 🐛 Fix: Error handling code for the makeFolder 2024-06-26 11:49:09 -05:00
go.mod ⬆️ Chore: Update Bcrypt 2024-07-02 14:27:48 -05:00
go.sum ⬆️ Chore: Go get cascadia, html-to-markdown 2024-07-02 14:29:58 -05:00
LICENSE Switch Repo to notatio/notatio 2023-11-20 22:10:40 -06:00
list.go 🩹 Fix: Superfluous WriteHeader in Upload 2024-06-26 12:49:20 -05:00
main.go ⬆️ Chore: Update Bcrypt 2024-07-02 14:27:48 -05:00
README.md 📝 Docs: Add Quadlets and small changes to README 2024-06-30 00:46:43 -05:00
user.go Rework how form data is collected for signup 2023-11-29 23:30:12 -06:00
wait-for-postgres.sh ⚗️ Chore: Improve logging message and test actions 2024-07-02 14:21:36 -05:00

Notatio

💡 About

Notatio is currently under heavy development! As such there is the possibility breaking changes!

Notatio is a self-hostable, containerized, web-based text editor written in the Go programming language. The main objective of the project is to create a platform independent text editor (and productivity management suite). I hope to develop this as an alternative to proprietary software like obsidian and Notion.so which I have loved and used in the past. This software was originally created as part of a Senior Capstone, but is now being developed in my spare time while job hunting.

🛣️ Roadmap

In Progress

  • 🕓 Building Custom Text Editor
  • 🕓 Add Kanban Board

Planned V1 Release

  • Flesh out File Management Operations
  • NoSQL setup option

Planned v1.1 Release

  • Collaborative Editing
  • File Versioning

Planned v1.2 Release

  • End-to-End Encryption

💾 Download

Downloading Notatio is simple! Just clone the repository using the command below:

git clone https://codeberg.org/musselman/notatio

🚀 Running

There are two ways to run Notatio.


Docker

Before running the Docker container, make sure to copy .env.example to .env and customize the environment variables to your preferences:

cp .env.example .env

Launch the containers using the following command:

docker-compose up -d

Podman (Alternative to Docker)

  1. Make sure you have Podman and Podman-Compose installed on your system.
  2. Copy .env.example to .env and modify the environment variables as per your requirements.
  3. Edit the docker-compose.yaml to have :Z's at the end of volumes. This is to tell SELinux that the volumes should be labeled with the appropriate security context.
  4. Launch the containers using the following command:
podman-compose up -d

Please note that using Podman instead of Docker requires you to have Podman installed and properly configured on your system. The usage and setup of Podman may differ from Docker, so please consult the Podman documentation for further information.

For those who use Podman Quadlets, I am pleased to provide them for you in the Quadlets folder.

🛠️ Go Binary (Advanced)


Note: This setup requires a running PostgreSQL database. Please set it up before proceeding.

To run Notatio using the Go binary, follow the steps below:

  1. Build the Go binary.
  2. Pass the necessary environment variables to the program, editing them to provide the required information for your database.

Example command:

DB_HOST=127.0.0.1 PGPORT=5432 DB_USER=postgres POSTGRES_PASSWORD=mysecretpassword DB_SSL_MODE=disable ADMIN_USER=admin_user ADMIN_NAME=Admin ADMIN_EMAIL=admin@example.com ADMIN_PASS=admin_is_not_a_good_password! ./notatio

Please note that this method is more advanced and requires additional setup such as installing G.

🤝 Contributing

As this is no longer an academic project, All contributions are welcome. Please take a look at contributing guide.

📄 License

This project is licensed under the AGPL see the LICENSE file for details