https://github.com/qdot/white-label-teledildonics-server
White Label Generic Teledildonics Server
https://github.com/qdot/white-label-teledildonics-server
Last synced: 3 months ago
JSON representation
White Label Generic Teledildonics Server
- Host: GitHub
- URL: https://github.com/qdot/white-label-teledildonics-server
- Owner: qdot
- License: mit
- Created: 2018-08-17T05:16:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-17T19:02:07.000Z (almost 8 years ago)
- Last Synced: 2025-12-26T22:45:49.522Z (7 months ago)
- Language: JavaScript
- Size: 253 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# White Label Teledildonics
## About
An absolutely generic teledildonics based chat server that is absolutely not based off a quick hack of a [furry yiff server](https://github.com/kisuka/YiffSpot) with [Buttplug](https://github.com/buttplugio/buttplug-js) bolted onto it.
WHAT.
STOP LOOKING AT ME LIKE THAT.
## Installation
```bash
npm install
```
## Usage
### Glitch.com
To us our prebuilt instance on glitch:
- Go to https://metafetish-white-label-teledildonics-server.glitch.me
- You will be matched with random people. Please do not teledildonics them without knowing who they are. That could be bad otherwise.
To spin up your own server instance on glitch (so you could use it with someone else with whom you have shared the URL):
- Go to https://glitch.com/~metafetish-white-label-teledildonics-server
- Hit View Source
- Click on project name in upper right
- Hit "Remix Project"
- Change the name of config.example.js to config.js
- Change server name in config.js to the url of your glitch project, like so:
```javascript
module.exports = {
"host": 'https://metafetish-white-label-teledildonics-server.glitch.me',
"page_title": 'GENERIC TELEDILDONICS FOR GENERIC USERS',
"debug": false,
"http_port": process.env.PORT || 3000,
"https_port": process.env.PORT || 3443,
"ssl_enabled": false,
"ssl_key": "",
"ssl_crt": "",
"redis_user": "",
"redis_password": "",
"redis_host": "localhost",
"redis_port": 6379
}
```
### Production on own server
```bash
npm run launch
```
### Development on own server
This starts the server in development mode, which watches the source files for changes and re-builds automatically.
```bash
npm run dev
```
## License
[MIT](LICENSE)