updated readme

This commit is contained in:
Solomon Laing 2020-02-05 11:25:49 +10:30
parent 9aa42fc1f1
commit afc8780653
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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+"...");