No description
Find a file
Nextcloud bot 8b2e35c0b9
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-12-23 01:39:19 +00:00
.devcontainer fix: Use devcontainer with php v8.2 2024-12-04 09:24:19 +01:00
.github build(deps): drop NC 30 2025-12-11 22:08:03 +01:00
.scripts chore: Add SPDX header 2024-08-07 20:39:40 +02:00
.tx
appinfo build(deps): drop NC 30 2025-12-11 22:08:03 +01:00
build chore: Add SPDX header 2024-08-07 20:39:40 +02:00
css fix: stylelint 2025-09-07 10:11:02 +01:00
cypress fix: Clear usergroup selection before editing rows 2025-11-11 19:26:10 +00:00
docs
img feat: added material design icon picker for contexts 2024-03-27 15:54:05 +01:00
l10n fix(l10n): Update translations from Transifex 2025-12-23 01:39:19 +00:00
lib Enhancement: Reduce logs for non-existent circles and cache circle names 2025-12-08 18:07:00 +01:00
LICENSES ci: Add REUSE check 2024-08-08 15:36:21 +02:00
screenshots chore(version bump): prepare v0.6.5 2023-12-18 16:09:42 +01:00
src fix: Clear usergroup selection before editing rows 2025-11-11 19:26:10 +00:00
templates chore: Add SPDX header 2024-08-08 15:35:37 +02:00
tests tests(Integration): extend sharing tests 2025-11-11 17:39:40 +01:00
vendor-bin chore(deps): update dependency nextcloud/openapi-extractor to ^1.8.7 2025-12-06 00:55:56 +00:00
.eslintrc.cjs perf: Switch to vite for bundling 2025-06-25 18:40:39 +01:00
.git-blame-ignore-revs docs(git): coding-standard bump 2025-02-10 12:22:29 +01:00
.gitattributes chore: Add SPDX header 2024-08-05 20:51:55 +02:00
.gitignore build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
.l10nignore chore: Add SPDX header 2024-08-05 20:51:55 +02:00
.lib-vendor-organizer.php build(scoper): fix lib-vendor-organizer run on MacOS 2025-12-05 10:48:16 +01:00
.nextcloudignore build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
.php-cs-fixer.dist.php build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
.scoper-production-dependencies build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
AUTHORS.md chore: Add SPDX header 2024-08-08 15:35:37 +02:00
babel.config.cjs perf: Switch to vite for bundling 2025-06-25 18:40:39 +01:00
CHANGELOG.md fix: Reorganize changelog entries 2025-11-11 19:59:46 +00:00
composer.json build(deps): drop NC 30 2025-12-11 22:08:03 +01:00
composer.lock build(deps): drop NC 30 2025-12-11 22:08:03 +01:00
COPYING
cypress.config.mjs fix(Cypress): component test 2025-08-21 05:41:17 +01:00
krankerl.toml chore: Add SPDX header 2024-08-05 20:51:55 +02:00
Makefile chore: Add SPDX header 2024-08-05 20:51:55 +02:00
openapi.json tests(Integration): extend sharing tests 2025-11-11 17:39:40 +01:00
package-lock.json build(deps): drop NC 30 2025-12-11 22:08:03 +01:00
package.json build(deps): drop NC 30 2025-12-11 22:08:03 +01:00
phpunit.integration.xml chore: Add SPDX header 2024-08-05 20:51:55 +02:00
phpunit.xml chore: Add SPDX header 2024-08-05 20:51:55 +02:00
psalm.xml build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
README.md docs: Add REUSE status badge 2024-08-08 15:37:27 +02:00
renovate.json build: fix renovate config 2025-07-16 21:48:07 +02:00
REUSE.toml build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
scoper.inc.php build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
stylelint.config.cjs perf: Switch to vite for bundling 2025-06-25 18:40:39 +01:00
tsconfig.json fix: update tsconfig 2025-06-25 18:40:39 +01:00
update-scoper-dependencies.sh build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
vite.config.ts feat: activity support 2025-10-13 14:46:45 +01:00

Nextcloud App »Tables«

REUSE status

Manage data the way you need it.

With this app you are able to create your own tables with individual columns. You can start with a template or from scratch and add your wanted columns.

Documentation

General information

https://github.com/nextcloud/tables/wiki

Administration

https://github.com/nextcloud/tables/wiki/Administration

API

https://github.com/nextcloud/tables/wiki/API

Developer information

https://github.com/nextcloud/tables/wiki/Developing

Installation/Update

The app can be installed through the app store within Nextcloud. You can also download the latest release from the release page.

Install from source code

To build you will need to have Node.js and Composer installed.

  • Clone repository into the app-directory: cd /path/to/apps && git clone https://github.com/nextcloud/tables && cd tables
  • Install PHP dependencies: composer install --no-dev
  • Install JS dependencies: npm ci
  • Build JavaScript for the frontend
    • Development build npm run dev or
    • Watch for changes npm run watch or
    • Production build npm run build