File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,36 @@ See the [Features](#features) for more functionalities
21
21
22
22
- [ functions] ( ./functions ) : source folder for firebase-functions
23
23
- [ modules] ( ./functions/modules ) : Shared types and functions between front-end and back-end (firebase-functions and nuxt serverMiddleware)
24
+ - [ types-module] ( ./functions/modules/types-module ) : has all shared types (enums, interfaces, constants)
25
+ - [ handlers-module] ( ./functions/modules/handlers-module ) : has all express handlers. Also, has all backend services like firebase-admin and firestore
26
+ - src: the source of the functions
24
27
- [ src] ( ./src ) : nuxt application
25
28
29
+ ``` shell script
30
+ | -- functions
31
+ | | -- modules
32
+ | | | -- handlers-module
33
+ | | | ` -- src
34
+ | | ` -- types-module
35
+ | | ` -- src
36
+ | ` -- src
37
+ ` -- src
38
+ | -- assets
39
+ | -- components
40
+ | -- i18n
41
+ | -- layouts
42
+ | -- middleware
43
+ | -- mixin
44
+ | -- pages
45
+ | -- plugins
46
+ | -- server
47
+ | -- service
48
+ | -- static
49
+ | -- store
50
+ | -- types
51
+
52
+ ` ` `
53
+
26
54
27
55
# # DETAILED DOCUMENTATION
28
56
> Coming soon
@@ -31,6 +59,7 @@ See the [Features](#features) for more functionalities
31
59
- [x] nuxtjs - universal mode
32
60
- [x] dynamic profile page with username
33
61
- [x] typescript
62
+ - [x] local npm modules for shared types and functions
34
63
- [x] firebase
35
64
- [x] firebase-hosting
36
65
- [x] firebase-functions
You can’t perform that action at this time.
0 commit comments