From afc8780653fad494034898cf0f876459dba2a132 Mon Sep 17 00:00:00 2001 From: inkletblot Date: Wed, 5 Feb 2020 11:25:49 +1030 Subject: [PATCH] updated readme --- README.md | 6 +++++- server.js | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4213208..7d6cc5c 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,13 @@ This is an angularjs project, currently it is a total rebuild of inkletblot.com using the framework. The forum has been separated from the gallery and 'things' pages. It is at https://github.com/Inkletblot/forum.com +Api server for this project is at https://github.com/Inkletblot/inkletblot.server +There is a container of the app autobuilt at inkletblot/inkletblot-server + > I know things is a stupid name, can you come up with a better one? ## TODO! +* note that todo applies to both .com and .server and is kept synced, manually! * ### General: * Fix server responses to be all the same. @@ -14,7 +18,7 @@ The forum has been separated from the gallery and 'things' pages. It is at https * Generally strengthen server API, especially once forum is separate. ### Gallery/Things: -*Deal with this once forum is totally complete, it is now main project* +* Things to add are nil atm. ## Interesting Ideas. * None as of yet x \ No newline at end of file diff --git a/server.js b/server.js index 52e132d..8d33d48 100644 --- a/server.js +++ b/server.js @@ -12,7 +12,7 @@ app.get('/', (req, res) => { res.sendFile('./index.html') }) -let port = 7000 +let port = 8700 app.listen(port, () => { console.log("Listening on port "+port+"...");