https://github.com/intellectualsites/thoth
An extensible Paste-Server and Viewer to generate application debug information a breeze
https://github.com/intellectualsites/thoth
Last synced: about 2 months ago
JSON representation
An extensible Paste-Server and Viewer to generate application debug information a breeze
- Host: GitHub
- URL: https://github.com/intellectualsites/thoth
- Owner: IntellectualSites
- Created: 2023-09-26T20:36:12.000Z (almost 3 years ago)
- Default Branch: development
- Last Pushed: 2023-12-15T05:28:42.000Z (over 2 years ago)
- Last Synced: 2025-10-26T00:27:21.280Z (8 months ago)
- Language: TypeScript
- Size: 110 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Thoth
-- TODO --
## Installation
Install Thoth with the official docker image
```bash
docker run intellectualsites/thoth:latest
-p 1234:1234
-v /data:/data
```
## API Reference
#### Get general paste data
```http
GET /api/paste/${id}
```
| Parameter | Type | Description |
|:----------|:---------|:---------------------------------------------|
| `id` | `string` | **Required**. The ID of the to-fetched paste |
#### Get paste metadata
```http
GET /api/paste/${id}/metadata
```
| Parameter | Type | Description |
|:----------|:---------|:------------------------------------------------------------|
| `id` | `string` | **Required**. The ID of the paste to fetch the metadata for |
-- TODO --
## Run Locally
Clone the project
```bash
git clone https://https://github.com/IntellectualSites/Thoth.git
```
Go to the project directory
```bash
cd Thoth
```
-- TODO --
## Running Tests
To run tests, run the following command
-- TODO --