diff --git a/README.md b/README.md index a3699d0..19e505e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ do this again, I would use PHP. NodeJS is great, however, it was a pain to deal with all the asynchronous calls when trying to create a web page in a linear fashion. If you want to run this project, it requires Mysql, npm, and node to be installed. For -deployment I use a [Nginx](https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-on-ubuntu-16-04) +deployment I used a [Nginx](https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-on-ubuntu-16-04) proxy. diff --git a/entries/projects/media/steam/ben2.png b/entries/projects/media/steam/ben2.png new file mode 100644 index 0000000..32d2d15 Binary files /dev/null and b/entries/projects/media/steam/ben2.png differ diff --git a/entries/projects/media/steam/diagram.png b/entries/projects/media/steam/diagram.png new file mode 100644 index 0000000..7562149 Binary files /dev/null and b/entries/projects/media/steam/diagram.png differ diff --git a/entries/projects/media/steam/jrtechs1.png b/entries/projects/media/steam/jrtechs1.png new file mode 100644 index 0000000..c5a29d7 Binary files /dev/null and b/entries/projects/media/steam/jrtechs1.png differ diff --git a/entries/projects/media/steam/jrtechs2.png b/entries/projects/media/steam/jrtechs2.png new file mode 100644 index 0000000..2016a56 Binary files /dev/null and b/entries/projects/media/steam/jrtechs2.png differ diff --git a/entries/projects/steam-friends-graph.md b/entries/projects/steam-friends-graph.md new file mode 100644 index 0000000..d1f8dec --- /dev/null +++ b/entries/projects/steam-friends-graph.md @@ -0,0 +1,27 @@ + + +# Description of Project + + +## Links + +- [Github](https://github.com/jrtechs/SteamFriendsGraph) +- [Live Site](http://steam.jrtechs.net/) + +![Lucid chart diagram](media/steam/diagram.png) + +# Technical Details + + +![Steam friends graph](media/steam/jrtechs1.png) + + # Uses of Friends Graph Data Base + + +![Steam friends graph](media/steam/ben2.png) + +# Hosting Project + +![Steam friends graph](media/steam/jrtechs2.png) + +# Future Plans for Project \ No newline at end of file diff --git a/img/posts/steamGraphWebBanner.png b/img/posts/steamGraphWebBanner.png new file mode 100644 index 0000000..3ea185f Binary files /dev/null and b/img/posts/steamGraphWebBanner.png differ diff --git a/posts/singlePost.js b/posts/singlePost.js index a6d820d..3eb0535 100644 --- a/posts/singlePost.js +++ b/posts/singlePost.js @@ -69,7 +69,7 @@ module.exports= + post.url + ".md"; var markDown = utils.getFileContents(pathName).toString(); - markDown = markDown.split("![](media/").join("![](" + "../entries/" + markDown = markDown.split("(media/").join("(" + "../entries/" + category[0].url + "/media/"); var htmlPost = md.render(markDown).split("

"); @@ -140,7 +140,7 @@ module.exports= var pathName = "entries/" + category[0].url + "/" + post.url + ".md"; var markDown = utils.getFileContents(pathName).toString(); - markDown = markDown.split("![](media/").join("![](" + "../entries/" + markDown = markDown.split("(media/").join("(" + "../entries/" + category[0].url + "/media/"); html += md.render(markDown);