Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 0 additions & 86 deletions PROTOPAINT.code-workspace

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ProtoPaint
[![time tracker](https://wakatime.com/badge/github/maxdevos49/ProtoPaint.svg)](https://wakatime.com/badge/github/maxdevos49/ProtoPaint)
[![Actions Status](https://github.com/maxdevos49/protopaint/workflows/build/badge.svg)](https://github.com/maxdevos49/protopaint/actions)
![CI](https://github.com/maxdevos49/ProtoPaint/workflows/CI/badge.svg?branch=master)

A advanced Paint Application made with Typescript. This application is designed with extensibility, modularity, and maintainability as the top priority to create a application with desktop quality editing and power eventually.

Expand Down
5 changes: 4 additions & 1 deletion dev-server.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import http from "http";
import express from "express";
import ip from "ip";
import path from "path";

const app: express.Application = express();
const server: http.Server = http.createServer(app);

app.use(express.static(__dirname + "/src"));
process.title = "ProtoPaint Development Server";//does nothing.... i think

app.use(express.static(path.resolve() + "/src"));

app.use((_, res) => {
res.redirect("/index.html");
Expand Down
Loading