From 8340cce9977c291f945eee084d40239a06fc22c1 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 24 Nov 2020 20:08:41 +0100 Subject: [PATCH] Added basic file structure for routes, models and controllers ref #1 --- README.md | 7 ++++++- src/controllers/.gitkeep | 0 src/models/.gitkeep | 0 src/routes/.gitkeep | 0 4 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 src/controllers/.gitkeep create mode 100644 src/models/.gitkeep create mode 100644 src/routes/.gitkeep diff --git a/README.md b/README.md index 9fddbd5..b8d987c 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,9 @@ docker-compose up --build ## Recommended Editor [Visual Studio Code](https://code.visualstudio.com/) ### Recommended Extensions -- will be automatically recommended via ./vscode/extensions.json \ No newline at end of file +- will be automatically recommended via ./vscode/extensions.json + +## File Structure +- src/models/* - database models +- src/routes/* - api routes for express +- src/controllers/* - business logic \ No newline at end of file diff --git a/src/controllers/.gitkeep b/src/controllers/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/models/.gitkeep b/src/models/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/routes/.gitkeep b/src/routes/.gitkeep new file mode 100644 index 0000000..e69de29