From f561a7d55d6b60b75d5b6b54ae49bd9efb7a78aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20Radeczki?= <g.radeczki@gmail.com> Date: Fri, 8 Jan 2021 17:20:03 +0100 Subject: [PATCH] Updated README --- README.md | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 875fec5..c321026 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,34 @@ -# express-template -This is a template repository for creating express applications. +# express-template repository + +This is a template repository for creating express applications. It uses pre defined node modules to help speed up production. + +## Getting started + +### Install node modules: +```bash +npm install +``` + +### Start development server using nodemon: +```bash +npm start dev +``` + +### Start production server: +```bash +npm start +``` + +## Used node modules + +Dependencies: +- `Express` +- `EJS` +- `Mongoose` + +Dev dependencies: +- `Nodemon` + +## Shoutout + +- `normalize.css` (https://necolas.github.io/normalize.css/) \ No newline at end of file -- GitLab