From da4cf47072d758de2d8a88aba2cced975f03a1c1 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sat, 11 Jun 2022 08:25:35 +1000 Subject: [PATCH] Updated structure folders (markdown) --- structure-folders.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/structure-folders.md b/structure-folders.md index d7bf099..b8e005b 100644 --- a/structure-folders.md +++ b/structure-folders.md @@ -24,7 +24,7 @@ root/ - index.js - index.js - server.js - - sql/ + - tools/ - create_database.sql - .envdev - .gitignore @@ -50,17 +50,13 @@ The `common/` directory is used for common files shared between client and serve This directory is used by all repos, but the core repo has only a placeholder server that serves the client code at the time of writing. `server/database` and `server/database/models` hold the database information, while repo-specific directories can also be found here (such as `server/news`, `server/auth` and `server/chat`). `server/admin` may occasionally be found here as well. -## Sql - -`sql/` contains some sql scripts for various uses. - ## Test `test/` contains tools for testing the projects. This will eventually house fully automated testing suites. ## Tools -No repo currently has this directory, but eventually `tools/` will hold various utilities for building and maintaining the project automatically. +`tools/` contains miscellaneous scripts intended for various different uses. ## Root