Compare commits

...

5 commits

Author SHA1 Message Date
ce73637776
minor backend tweaks 2025-02-01 15:15:14 +00:00
e1026aeb69
update package.json 2025-02-01 14:47:56 +00:00
ac299e1053
Update docker-image.yml 2024-06-22 02:52:12 +01:00
16eab508e6
Merge pull request #11 from arimelody/docker-ci
Create docker-image.yml
2024-06-22 02:50:26 +01:00
9890231010
Create docker-image.yml 2024-06-22 02:50:10 +01:00
4 changed files with 38 additions and 12 deletions

25
.github/workflows/docker-image.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Docker CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: docker.arimelody.me
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: docker.arimelody.me/openterminal:latest

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "openterminal",
"version": "1.0.0",
"version": "1.1.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "openterminal",
"version": "1.0.0",
"version": "1.1.0",
"license": "ISC",
"dependencies": {
"ws": "^8.17.1"

View file

@ -1,22 +1,23 @@
{
"name": "openterminal",
"version": "1.0.0",
"version": "1.1.0",
"description": "",
"main": "./server/main.js",
"type": "module",
"scripts": {
"start": "node ./server/main.js",
"dev": "nodemon ./server/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mellodoot/openterminal.git"
"url": "git+https://github.com/arimelody/openterminal.git"
},
"author": "ari melody",
"license": "ISC",
"bugs": {
"url": "https://github.com/mellodoot/openterminal/issues"
"url": "https://github.com/arimelody/openterminal/issues"
},
"homepage": "https://github.com/mellodoot/openterminal#readme",
"homepage": "https://github.com/arimelody/openterminal#readme",
"dependencies": {
"ws": "^8.17.1"
}

View file

@ -1,7 +1,7 @@
const fs = require('fs');
const http = require('http');
const path = require('path');
const Websocket = require('ws');
import fs from 'fs';
import http from 'http';
import path from 'path';
import WebSocket from 'ws';
const VERSION = "1.1.0";
@ -136,7 +136,7 @@ function get_real_address(req) {
return req.connection.remoteAddress;
}
const wss = new Websocket.Server({ server });
const wss = new WebSocket.Server({ server });
wss.on('connection', (socket, req) => {
console.log(`${new Date().toISOString()} - WS OPEN - ${get_real_address(req)} (active connections: ${sockets.length + 1})`);
/*
@ -271,7 +271,7 @@ function generate_colour() {
}
server.listen(PORT, HOST, () => {
console.log(`OpenTerminal is now LIVE on http://${HOST === '0.0.0.0' ? '127.0.0.1' : HOST}:${PORT}`);
console.log(`OpenTerminal is now LIVE on http://${HOST}:${PORT}`);
if (TRUSTED_PROXIES.length > 0) console.log(`Using X-Forwarded-For headers for hosts: ${TRUSTED_PROXIES.join(", ")}`);
});