neko/README.md

69 lines
3.1 KiB
Markdown
Raw Normal View History

2020-01-14 00:28:14 +13:00
<div align="center">
<img src="https://github.com/nurdism/neko/raw/master/.github/logo.png" width="650" height="auto"/>
</div>
2020-01-14 22:39:47 +13:00
<div align="center">
2020-01-24 06:29:20 +13:00
<img src="https://i.imgur.com/ZSzbQr7.gif" width="650" height="auto"/>
2020-01-14 22:39:47 +13:00
</div>
2020-01-19 12:30:09 +13:00
# **n**.eko
2020-01-24 06:29:20 +13:00
This is a proof of concept project I threw together over the last few days, it's not perfect, but it looks nice. This uses web rtc to stream a desktop inside of a docker container, I made this because [rabb.it](https://en.wikipedia.org/wiki/Rabb.it) went under and my internet can't handle streaming and discord keeps crashing. I just want to watch anime with my friends ლ(ಠ益ಠლ) so I started digging throughout the net and found a few *kinda* clones, but non of them had the virtual browser, then I found [Turtus](https://github.com/Khauri/Turtus) and I was able to figure out the rest. This is by no means a fully featured clone of rabbit, it hs only *one* room. Its stateless, so no saved user names or passwords.
2020-01-13 21:05:38 +13:00
### Why n.eko?
2020-01-15 09:42:07 +13:00
I like cats (Neko is the Japanese word for cat), I'm a weeb/nerd, I own the domain [n.eko.moe](https://n.eko.moe/) and I love the logo /shrug
### Super easy mode setup
2020-01-21 03:36:35 +13:00
1. Deploy a Server/VPS
2020-01-19 12:30:09 +13:00
2020-01-23 06:16:40 +13:00
*Recomended Specs:* (Note: these may not be correct, I did a small round testing, 4c/4gb worked fine with small hickups here and there)
2020-01-19 12:57:49 +13:00
2020-01-21 03:36:35 +13:00
| Resolution | Cores | Ram | Recommendation |
|------------|-------|-------|------------------|
| **576p** | 2 | 2gb | Not Recommended |
| **720p** | 4 | 4gb | Good Performance |
| **720p** | 6 | 4-6gb | Recommended |
| **720p+** | 8 | 8gb+ | Best Performance |
2. [SSH into your box](https://www.digitalocean.com/docs/droplets/how-to/connect-with-ssh/)
2020-01-19 12:30:09 +13:00
3. Install Docker
```
curl -sSL https://get.docker.com/ | CHANNEL=stable bash
```
4. Run these commands:
```
ufw allow 80/tcp
wget https://raw.githubusercontent.com/nurdism/neko/master/docker-compose.yaml
docker-compose up -d
```
5. Visit the IP address of the droplet in your browser and login, the default password is `neko`
> *Protip*: Run `nano docker-compose.yaml` to edit the settings, then press *ctrl+x* to exit and save the file.
### Running the container:
2020-01-14 00:28:14 +13:00
```
2020-01-24 06:29:20 +13:00
sudo docker run -p 8080:8080 -e NEKO_PASSWORD='secret' -e NEKO_ADMIN='secret' --shm-size=1gb nurdism/neko:latest
2020-01-14 00:28:14 +13:00
```
2020-01-19 12:30:09 +13:00
*Note:* `--shm-size=1gb` is required, firefox-esr tabs will crash
2020-01-13 21:05:38 +13:00
2020-01-14 00:28:14 +13:00
### Config
2020-01-13 21:05:38 +13:00
```
2020-01-14 00:28:14 +13:00
NEKO_USER=$USERNAME // User
NEKO_DISPLAY=0 // Display number
NEKO_WIDTH=1280 // Display width
NEKO_HEIGHT=720 // Display height
2020-01-14 00:28:14 +13:00
NEKO_PASSWORD=neko // Password
2020-01-25 04:47:37 +13:00
NEKO_ADMIN=neko // Admin Password
2020-01-14 00:28:14 +13:00
NEKO_BIND=0.0.0.0:8080 // Bind
NEKO_KEY= // (SSL)Key
NEKO_CERT= // (SSL)Cert
2020-01-13 21:05:38 +13:00
```
### Development
*Highly* recommend you use a [dev container](https://code.visualstudio.com/docs/remote/containers) for [vscode](https://code.visualstudio.com/), I've included the `.devcontainer` I've used to develop this app. To build neko run:
`cd .docker && ./build`
2020-01-24 06:29:20 +13:00
### Non Goals
2020-01-25 04:47:37 +13:00
* Turning n.eko into a service that serves multiple rooms and browsers/desktops.
* Voice chat, use [Discord](https://discordapp.com/))