Skip to content

Commit a1c0043

Browse files
committed
chore(project-structure): add info about top directories
1 parent 0db9659 commit a1c0043

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

concepts/002-project-structure.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Project structure
22

3+
- `src` - application source code
4+
- `build` - scripts and modules used for build process
5+
- `config` - configuration: build, runtime, etc.
6+
- `tests` - test helpers and configuration
7+
- `tools` - scripts and useful tools, i.e.: custom linters, git hooks scripts, etc.
8+
39
## src
410

511
**Layers of the application:**
@@ -65,8 +71,14 @@ TODO
6571

6672
## config
6773

68-
TODO
74+
We use [config](https://www.npmjs.com/package/config/v/1.31.0) library for build
75+
and runtime configuration.
76+
77+
Config directory consists of three files:
6978

79+
- default.js
80+
- development.js
81+
- production.js
7082

7183
## tests
7284

0 commit comments

Comments
 (0)