📑 Collaborative document editing using Markdown
Перейти к файлу
Julius Härtl e14beab776
Update pull_request_template.md
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2022-11-14 14:35:11 +01:00
.github Update pull_request_template.md 2022-11-14 14:35:11 +01:00
.tx [tx-robot] Update transifex configuration 2022-10-01 03:02:12 +00:00
appinfo Add Nextcloud 25 support on master 2022-09-22 13:19:33 +02:00
css fix: adjust margin for hr 2022-10-18 06:13:51 +00:00
cypress Add tests for direct editing and cleanup dead code 2022-11-09 12:59:54 +01:00
img ⚰️ (#2345): remove unused icons 2022-05-27 12:27:54 -03:00
js Compile assets 2022-11-11 14:41:20 +00:00
l10n [tx-robot] updated from transifex 2022-11-12 02:54:44 +00:00
lib Merge pull request #3401 from nextcloud/cleanup/direct-editing 2022-11-09 15:45:20 +01:00
src Added test for rendering of hard breaks within the editor 2022-11-10 13:52:59 +01:00
templates Do not attempt to load a non-existing script 2022-10-12 10:20:39 +02:00
tests fix: feedback 2022-10-10 19:19:42 +02:00
.eslintignore 🔧 (#2462): small script adjusts 2022-05-31 16:16:24 -03:00
.eslintrc.js (#2184): add eslint-plugin-cypress 2022-03-14 11:38:29 -03:00
.gitattributes Add gitattributes 2019-08-06 10:42:47 +02:00
.gitignore gitignore: dist directory 2022-06-07 19:42:01 +02:00
.l10nignore
.php-cs-fixer.dist.php update: Nextcloud Coding Standard to 1.0 2022-01-18 10:47:20 +01:00
.stylelintrc.js fix stylelint config and one css import 2021-12-30 12:11:55 +01:00
CHANGELOG.md Prepare release of 1.0.2 2019-08-08 10:16:01 +02:00
COPYING
Makefile Remove test routine from Makefile all target 2022-01-11 11:07:31 +01:00
README.md Fix cypress scripts for local run + Add documentation 2022-06-05 12:39:56 +02:00
babel.config.js Fix chunk generation 2021-07-14 14:54:44 +02:00
composer.json Migrate to nextcloud/OCP package in master 2022-09-26 20:22:18 +02:00
composer.lock Update psalm baseline 2022-11-13 04:35:11 +00:00
cypress.config.js 🎨 format code 2022-09-26 11:58:03 -03:00
index.html Load Nextcloud server css files remotely from Github in index.html 2022-09-20 17:25:48 +02:00
jest-raw-loader.js ⬆️ Upgrade dependencies 2022-07-22 08:57:07 -03:00
jsconfig.json 🔧 (#2462): small script adjusts 2022-05-31 16:16:24 -03:00
krankerl.toml
package-lock.json Bump vue-template-compiler to 2.7.14 2022-11-11 15:12:39 +01:00
package.json Bump vue-template-compiler to 2.7.14 2022-11-11 15:12:39 +01:00
psalm.xml More package rename 2022-09-27 07:55:09 +02:00
renovate.json Pin @nextcloud/eslint-config and @nextcloud/webpack-vue-config for stable23/stable24 2022-11-07 17:19:25 +01:00
vite.config.js change vite-plugin-vue2 to @vitejs/plugin-vue2 2022-07-22 10:53:52 -03:00
webpack.js webpack: use hardcoded appname for now 2022-06-07 19:42:03 +02:00

README.md

Nextcloud Text

GitHub Workflow Status Start contributing

📑 Collaborative document editing!

Features

  • 📝 Simple focused writing: No distractions, only the formatting you need.
  • 🙋 Work together: Share and collaborate with friends and colleagues, no matter if they use Nextcloud or not!
  • 💾 Open format: Files are saved as Markdown, so you can edit them from any other text app too.
  • Strong foundation: We use 🐈 tiptap which is based on 🦉 ProseMirror – huge thanks to them!

Nextcloud Text is the default text editor since Nextcloud 17. To start editing just open an existing markdown or plaintext file or create a new one.

Configuration

The rich workspaces in the file list can be disabled either by the users in the files app settings or globally by the admin with the following occ command:

occ config:app:set text workspace_available --value=0

🏗 Development setup

Currently this app requires the master branch of the Viewer app.

  1. ☁ Clone this app into the apps folder of your Nextcloud: git clone https://github.com/nextcloud/text.git
  2. 👩‍💻 In the folder of the app, run the command make to install dependencies and build the Javascript.
  3. Enable the app through the app management of your Nextcloud
  4. 🎉 Partytime! Help fix some issues and review pull requests 👍

🧙 Advanced development stuff

To build the Javascript whenever you make changes, instead of the full make you can also run npm run build. Or run npm run watch to rebuild on every file save.

🐞 Testing the app

Currently this app uses three different kinds of tests:

For testing the backend (PHP) Psalm and PHPUnit are used, you can run the testcases (placed in tests/) using the composer scripts psalm and test:unit.

For testing the frontend jest is used for unittests, whereas cypress is used for end2end testing. The unittests are also placed in tests/, the cypress tests are placed in cypress/. You can run the tests using the package scripts npm run test (jest), and respective npm run test:cypress (cypress).

Please note the cypress tests require a nextcloud server running, the if no running server is detected a docker container will be started, this requires the current user to be in the docker group. Or you might set the CYPRESS_baseUrl environment variable for a custom nextcloud server.