Skip to content
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

Release 1.0.0 #2

Merged
merged 2 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
CI: '' # disable CI mode as it makes build fail on warnings

- name: Upload build to artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: editor
path: |
Expand All @@ -60,7 +60,7 @@ jobs:

- name: 'If build on master branch, download artifact'
if: ${{ github.ref_name == 'master' }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: artifact
name: editor
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Generic reference data editor

This is web application using a Json Schema definition to edit a list of records in Json format.
This is a web application using a Json Schema definition to edit a list of Json records.
The schema and data can be loaded using different backend providers.
The GUI shows a list of the elements as table, and an edit form if an element is selected.
The GUI shows a list of the records as table, and an edit form if a record is selected.

The Json Schema to edit a specified <dataset-name>.json file is named <dataset-name>.schema.json by convention.
The Json Schema is used to create a generic form for editing a record. The form supports arrays and nested objects.
Expand Down