-
Notifications
You must be signed in to change notification settings - Fork 419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App Submission: Etherpad #2132
base: master
Are you sure you want to change the base?
App Submission: Etherpad #2132
Conversation
App Submission: LinkStack - Self-hosted open-source Linktree alternative
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @dennysubke,
Great submission! I think there are only some minor changes needed, to get this approved by @nmfretz.
etherpad/docker-compose.yml
Outdated
# Exposing the port is not needed unless you want to access this database instance from the host. | ||
# Be careful when other postgres docker container are running on the same port | ||
# ports: | ||
# - "5432:5432" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would remove these comments
# Exposing the port is not needed unless you want to access this database instance from the host. | |
# Be careful when other postgres docker container are running on the same port | |
# ports: | |
# - "5432:5432" |
etherpad/docker-compose.yml
Outdated
# The Colibris skin allows you to customize the appearance of three containers: toolbar, editor, and background. | ||
# You can choose from four color combinations (super-light, light, dark, super-dark) for each container. | ||
# For example, using "dark-toolbar" sets the toolbar to dark. | ||
# Multiple variants can be applied, and by default, the skin variant is "super-light-toolbar super-light-editor light-background." | ||
# You can also make the editor full-width by adding the "full-width-editor" variant. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would remove these comments.
# The Colibris skin allows you to customize the appearance of three containers: toolbar, editor, and background. | |
# You can choose from four color combinations (super-light, light, dark, super-dark) for each container. | |
# For example, using "dark-toolbar" sets the toolbar to dark. | |
# Multiple variants can be applied, and by default, the skin variant is "super-light-toolbar super-light-editor light-background." | |
# You can also make the editor full-width by adding the "full-width-editor" variant. |
etherpad/docker-compose.yml
Outdated
NODE_ENV: production | ||
ADMIN_PASSWORD: umbrel | ||
DB_CHARSET: utf8mb4 | ||
DB_HOST: postgres |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only worked properly for me when i changed the container name to the full one.
DB_HOST: postgres | |
DB_HOST: etherpad_postgres_1 | |
etherpad/umbrel-app.yml
Outdated
📝 Etherpad is an open-source, web-based collaborative real-time editor that enables multiple users to simultaneously edit a document from different locations. It’s particularly valuable for teamwork, group projects, or situations where many people need to contribute to the same document at once. One of Etherpad’s standout features is its live collaboration functionality - as users make changes, those changes appear in real-time for all participants, with each user's contributions color-coded to distinguish them. | ||
|
||
|
||
The platform is designed to be simple and intuitive, with a clean and straightforward interface that emphasizes writing and editing. Etherpad doesn’t require users to sign up or install any software, making it easy for anyone to start collaborating quickly. | ||
|
||
|
||
Another key feature of Etherpad is its version history system, which allows users to view and revert to previous versions of the document. This ensures that changes can be tracked and recovered if necessary, making it a useful tool for managing long-term collaborative projects. | ||
|
||
|
||
As an open-source tool, Etherpad offers flexibility in how it’s used. Users can run it on their own servers for greater control and customization or simply use a public instance hosted by various service providers. The platform is highly extensible, with plugins available for additional features like embedding images, adding task lists, or even integrating with other tools. | ||
|
||
|
||
Etherpad has gained popularity in academic, business, and development environments for its simple yet effective collaboration features. Whether you're writing meeting notes, drafting a report, or brainstorming ideas with a team, Etherpad offers a powerful and user-friendly solution for collaborative writing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replace apostrophe with single quote
📝 Etherpad is an open-source, web-based collaborative real-time editor that enables multiple users to simultaneously edit a document from different locations. It’s particularly valuable for teamwork, group projects, or situations where many people need to contribute to the same document at once. One of Etherpad’s standout features is its live collaboration functionality - as users make changes, those changes appear in real-time for all participants, with each user's contributions color-coded to distinguish them. | |
The platform is designed to be simple and intuitive, with a clean and straightforward interface that emphasizes writing and editing. Etherpad doesn’t require users to sign up or install any software, making it easy for anyone to start collaborating quickly. | |
Another key feature of Etherpad is its version history system, which allows users to view and revert to previous versions of the document. This ensures that changes can be tracked and recovered if necessary, making it a useful tool for managing long-term collaborative projects. | |
As an open-source tool, Etherpad offers flexibility in how it’s used. Users can run it on their own servers for greater control and customization or simply use a public instance hosted by various service providers. The platform is highly extensible, with plugins available for additional features like embedding images, adding task lists, or even integrating with other tools. | |
Etherpad has gained popularity in academic, business, and development environments for its simple yet effective collaboration features. Whether you're writing meeting notes, drafting a report, or brainstorming ideas with a team, Etherpad offers a powerful and user-friendly solution for collaborative writing. | |
📝 Etherpad is an open-source, web-based collaborative real-time editor that enables multiple users to simultaneously edit a document from different locations. It's particularly valuable for teamwork, group projects, or situations where many people need to contribute to the same document at once. One of Etherpad's standout features is its live collaboration functionality - as users make changes, those changes appear in real-time for all participants, with each user's contributions color-coded to distinguish them. | |
The platform is designed to be simple and intuitive, with a clean and straightforward interface that emphasizes writing and editing. Etherpad doesn't require users to sign up or install any software, making it easy for anyone to start collaborating quickly. | |
Another key feature of Etherpad is its version history system, which allows users to view and revert to previous versions of the document. This ensures that changes can be tracked and recovered if necessary, making it a useful tool for managing long-term collaborative projects. | |
As an open-source tool, Etherpad offers flexibility in how it's used. Users can run it on their own servers for greater control and customization or simply use a public instance hosted by various service providers. The platform is highly extensible, with plugins available for additional features like embedding images, adding task lists, or even integrating with other tools. | |
Etherpad has gained popularity in academic, business, and development environments for its simple yet effective collaboration features. Whether you're writing meeting notes, drafting a report, or brainstorming ideas with a team, Etherpad offers a powerful and user-friendly solution for collaborative writing. |
restart: on-failure | ||
user: "1000:1000" | ||
|
||
postgres: |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
|
Severity | File | Description |
---|---|---|
etherpad/umbrel-app.yml |
"icon" and "gallery" needs to be empty for new app submissions: The "icon" and "gallery" fields must be empty for new app submissions as it is being created by the Umbrel team. |
Legend
Symbol | Description |
---|---|
❌ | Error: This must be resolved before this PR can be merged. |
Warning: This is highly encouraged to be resolved, but is not strictly mandatory. | |
ℹ️ | Info: This is just for your information. |
Thanks for the tips! I adjusted everything accordingly. 👍 |
@nmfretz this PR would be ready for your review. |
App Submission
Etherpad
...
Icon
...
Gallery images
...
I have tested my app on: