Add test images (#165)

This commit is contained in:
Lipis 2021-02-07 11:18:30 +02:00 committed by GitHub
parent fc6f1f5228
commit ed1862dab8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 0 deletions

BIN
public/test128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
public/test256.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

BIN
public/test64.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -10,6 +10,8 @@ const socketDebug = debug("socket");
const app = express();
const port = process.env.PORT || 80; // default port to listen
app.use(express.static("public"));
app.get("/", (req, res) => {
res.send("Excalidraw collaboration server is up :)");
});