@@ -17,25 +17,26 @@ Template for Frontend development. Build a web page using [SolidJS](https://soli
1717- ` LICENSE ` License file.
1818- ` README.md ` This file.
1919- ` .github ` [ GitHub configuration] ( https://www.freecodecamp.org/news/how-to-use-the-dot-github-repository/ ) directory.
20- - ` config ` Project specific config files (not part of sourcecode).
21- - ` deno.lock ` Lock file for all dependencies.
22- - ` import_map.json ` [ Import map] ( https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script/type/importmap ) for
23- all imports.
24- - ` build ` Build configuration files.
25- - ` copy_files_extension_filter.json ` JSON array of extensions for files that should be copied to the dist folder.
26- - ` index.ts ` Build configuration for [ esbuild] ( https://esbuild.github.io ) . Only change this if you know what you are
27- doing.
28- - ` types ` Project type declarations.
29- - ` ... ` Declaration.
30- - ` doc ` Documentation for the page.
20+
21+ - ` build/ ` Build configuration files.
22+ - ` esbuild.ts ` Build configuration for [ esbuild] ( https://esbuild.github.io ) . Only change this if you know what you are
23+ doing.
24+ - ` docs/ ` Documentation for the page.
3125 - ` ... ` Doc.
32- - ` src ` All sourcecode.
33- - ` client ` Sourcecode for the client.
34- - ` app ` The main app.
35- - ` components ` Generic components for the page.
36- - ` static ` Static assets for the page.
26+ - ` src/ ` All sourcecode.
27+ - ` client/ ` Sourcecode for the client.
28+ - ` index.css ` The main app CSS.
29+ - ` index.html ` The main app HTML.
30+ - ` index.tsx ` The main app TSX.
31+ - ` assets/ ` Assets for the main page.
32+ - ` pages/ ` Pages for the main app.
33+ - ` 404/ ` "Not Found" page.
34+ - ` home/ ` "Home" page.
35+ - ` .../ ` Pages.
36+ - ` assets/ ` Assets for the specific page.
37+ - ` static/ ` Static assets for all pages.
3738 - ` ... ` Client files.
38- - ` server ` Sourcecode for the server.
39+ - ` server/ ` Sourcecode for the server.
3940 - ` ... ` Server files.
4041- ` test ` Tests (no unit tests).
4142 - ` e_to_e ` End to End tests for the page.
0 commit comments