Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ramsailopal/ydbgui
Fork of main YDBGUI repo
https://github.com/ramsailopal/ydbgui
javascript jquery mumps yottadb
Last synced: about 5 hours ago
JSON representation
Fork of main YDBGUI repo
- Host: GitHub
- URL: https://github.com/ramsailopal/ydbgui
- Owner: RamSailopal
- Created: 2022-10-18T12:45:36.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-21T10:47:20.000Z (about 2 years ago)
- Last Synced: 2023-03-08T13:39:48.289Z (over 1 year ago)
- Topics: javascript, jquery, mumps, yottadb
- Language: JavaScript
- Homepage:
- Size: 2.37 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# YDBGUI
YottaDB GUI
Forked from https://gitlab.com/YottaDB/UI/YDBGUI
This particular fork contains additional code to integrate a bespoke application restart into the GUI. This can be found in the **Database Administration** "drop down" menu.
![main_screen](YDBGUI.JPG)
# Getting started
To run:
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/RamSailopal/YDBGUI) for free (simply create an account)
Locally with Docker -
git clone https://github.com/RamSailopal/YDBGUI.git
cd YDBGUI
docker run -dp 1338:1338 -p 8089:8089 -v $PWD/tools:/home/tools --entrypoint /home/tools/start.sh --name octo-vehu yottadb/octo-vehu:latest-master
# Set UpThe bespoke restart routine/line label is stored in the global/subscript:
^GUISYS("restart")
Change this to reference the startup iine/routine for your own application# Example
A dummy routine **^TESTROUT** has been added to the setup in the routines directory as an example startup routine
**RESTART^TESTROUT** hangs for 2 minutes and then reports a "clean" system start.
**CRASH^TESTROUT** demonstrates a crashing startup process after 30 seconds, reporting the M error associated.
To replicate a "clean" and crashing restart, change **^GUISYS("restart")** accordingly