1
0
mirror of https://github.com/parkervcp/eggs.git synced 2024-10-06 23:57:07 +02:00

Merge pull request #1051 from hwalker928/add/haste-server

Added haste-server
This commit is contained in:
Alex 2021-05-29 01:29:10 +03:00 committed by GitHub
commit 292be1a975
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 40 additions and 0 deletions

View File

@ -231,3 +231,5 @@ If you are reading this it looks like you are looking to add an egg to your serv
## [Software](/software/)
### Code Server
* [Code-Server](/software/code-server)
### haste-server
* [haste-server](/software/haste-server)

View File

@ -0,0 +1,8 @@
# haste-server
### Their [Github](https://github.com/seejohnrun/haste-server)
Host your own [Hastebin](https://hastebin.com).
### Server Ports
Ports required to run the server in a table format.
| Port | default |
| ---- | ------- |
| Game | 7777 |

View File

@ -0,0 +1,30 @@
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v1",
"update_url": null
},
"exported_at": "2021-03-26T17:25:19-04:00",
"name": "haste-server",
"author": "freelance@harrydev.me",
"description": "Haste is an open-source pastebin software written in node.js, which is easily installable in any network. It can be backed by either redis or filesystem, and has a very easy adapter interface for other stores. A publicly available version can be found at hastebin.com",
"features": null,
"images": [
"quay.io\/parkervcp\/pterodactyl-images:debian_nodejs-12"
],
"startup": "npm start",
"config": {
"files": "{\r\n \"config.js\": {\r\n \"parser\": \"json\",\r\n \"find\": {\r\n \"port\": \"{{server.build.default.port}}\"\r\n }\r\n }\r\n}",
"startup": "{\r\n \"done\": \"listening on\"\r\n}",
"logs": "{}",
"stop": "^C"
},
"scripts": {
"installation": {
"script": "#!\/bin\/bash\r\n\r\napt update\r\napt install -y git curl\r\nmkdir -p \/mnt\/server\r\ncd \/mnt\/server\r\n\r\ngit clone https:\/\/github.com\/seejohnrun\/haste-server\r\ncd haste-server\r\nmv * \/mnt\/server\r\ncd ..\r\nrm -rf haste-server\r\nnpm install\r\n\r\nexit 0",
"container": "node:12-buster-slim",
"entrypoint": "bash"
}
},
"variables": []
}