Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/idatsy/json-ui
Simple web interface for editing JSON files (such as config files on remote servers)
https://github.com/idatsy/json-ui
Last synced: 6 days ago
JSON representation
Simple web interface for editing JSON files (such as config files on remote servers)
- Host: GitHub
- URL: https://github.com/idatsy/json-ui
- Owner: idatsy
- Created: 2024-06-29T13:05:58.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-29T13:15:03.000Z (6 months ago)
- Last Synced: 2024-06-29T14:29:55.810Z (6 months ago)
- Language: HTML
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JSON Config Editor
## Features
- Edit any JSON configuration file through a web interface
- Supports nested objects, arrays, and various data types
- Basic authentication for security
- Easy integration into existing Flask applicationsA web-based JSON configuration editor with authentication.
## Example
![JSON Config Editor Screenshot](examples/screenshot.png)
## Usage
```python
from json_ui import create_appif __name__ == '__main__':
app = create_app(
config_path='/path/to/your/config.json',
username='admin',
password='your_secure_password'
)
app.run(host='0.0.0.0', port=5000)
```