Skip to content

Commit c2ebf09

Browse files
committed
restructured into client, server and added express with firestore
1 parent 7a9bc61 commit c2ebf09

File tree

174 files changed

+15494
-16944
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+15494
-16944
lines changed

.gitignore

Lines changed: 5 additions & 126 deletions
Original file line numberDiff line numberDiff line change
@@ -29,136 +29,15 @@ migrate_working_dir/
2929
.flutter-plugins-dependencies
3030
.pub-cache/
3131
.pub/
32-
/build/
32+
**/build/
3333

3434
# Symbolication related
3535
app.*.symbols
3636

3737
# Obfuscation related
3838
app.*.map.json
3939

40-
# Android Studio will place build artifacts here
41-
/android/app/debug
42-
/android/app/profile
43-
/android/app/release
44-
android/.gitignore
45-
android/build.gradle
46-
android/gradle.properties
47-
android/settings.gradle
48-
android/app/build.gradle
49-
android/app/src/debug/AndroidManifest.xml
50-
android/app/src/main/AndroidManifest.xml
51-
android/app/src/main/java/com/getflutterfire/get_flutter_fire/MainActivity.java
52-
android/app/src/main/res/drawable/launch_background.xml
53-
android/app/src/main/res/drawable-v21/launch_background.xml
54-
android/app/src/main/res/mipmap-hdpi/ic_launcher.png
55-
android/app/src/main/res/mipmap-mdpi/ic_launcher.png
56-
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
57-
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
58-
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
59-
android/app/src/main/res/values/styles.xml
60-
android/app/src/main/res/values-night/styles.xml
61-
android/app/src/profile/AndroidManifest.xml
62-
android/gradle/wrapper/gradle-wrapper.properties
63-
ios/.gitignore
64-
ios/Flutter/Debug.xcconfig
65-
ios/Flutter/Release.xcconfig
66-
ios/Runner/AppDelegate.swift
67-
ios/Runner/Runner-Bridging-Header.h
68-
ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
69-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
70-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
71-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
72-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
73-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
74-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
75-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
76-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
77-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
78-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
79-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
80-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
81-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
82-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
83-
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
84-
ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
85-
ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
86-
ios/Runner/Assets.xcassets/LaunchImage.imageset/[email protected]
87-
ios/Runner/Assets.xcassets/LaunchImage.imageset/[email protected]
88-
ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
89-
ios/Runner/Base.lproj/LaunchScreen.storyboard
90-
ios/Runner/Base.lproj/Main.storyboard
91-
ios/Runner.xcodeproj/project.pbxproj
92-
ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
93-
ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
94-
ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
95-
ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
96-
ios/Runner.xcworkspace/contents.xcworkspacedata
97-
ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
98-
ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
99-
ios/RunnerTests/RunnerTests.swift
100-
linux/.gitignore
101-
linux/CMakeLists.txt
102-
linux/main.cc
103-
linux/my_application.cc
104-
linux/my_application.h
105-
linux/flutter/CMakeLists.txt
106-
linux/flutter/generated_plugin_registrant.cc
107-
linux/flutter/generated_plugin_registrant.h
108-
linux/flutter/generated_plugins.cmake
109-
macos/.gitignore
110-
macos/Flutter/Flutter-Debug.xcconfig
111-
macos/Flutter/Flutter-Release.xcconfig
112-
macos/Flutter/GeneratedPluginRegistrant.swift
113-
macos/Runner/AppDelegate.swift
114-
macos/Runner/DebugProfile.entitlements
115-
macos/Runner/MainFlutterWindow.swift
116-
macos/Runner/Release.entitlements
117-
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png
118-
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png
119-
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png
120-
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png
121-
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png
122-
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png
123-
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png
124-
macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
125-
macos/Runner/Base.lproj/MainMenu.xib
126-
macos/Runner/Configs/AppInfo.xcconfig
127-
macos/Runner/Configs/Debug.xcconfig
128-
macos/Runner/Configs/Release.xcconfig
129-
macos/Runner/Configs/Warnings.xcconfig
130-
macos/Runner.xcodeproj/project.pbxproj
131-
macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
132-
macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
133-
macos/Runner.xcworkspace/contents.xcworkspacedata
134-
macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
135-
macos/RunnerTests/RunnerTests.swift
136-
web/favicon.png
137-
web/index.html
138-
web/manifest.json
139-
web/icons/Icon-192.png
140-
web/icons/Icon-512.png
141-
web/icons/Icon-maskable-192.png
142-
web/icons/Icon-maskable-512.png
143-
windows/.gitignore
144-
windows/CMakeLists.txt
145-
windows/flutter/CMakeLists.txt
146-
windows/flutter/generated_plugin_registrant.cc
147-
windows/flutter/generated_plugin_registrant.h
148-
windows/flutter/generated_plugins.cmake
149-
windows/runner/CMakeLists.txt
150-
windows/runner/flutter_window.cpp
151-
windows/runner/flutter_window.h
152-
windows/runner/main.cpp
153-
windows/runner/resource.h
154-
windows/runner/runner.exe.manifest
155-
windows/runner/Runner.rc
156-
windows/runner/utils.cpp
157-
windows/runner/utils.h
158-
windows/runner/win32_window.cpp
159-
windows/runner/win32_window.h
160-
windows/runner/resources/app_icon.ico
161-
lib/firebase_options.dart
162-
pubspec.lock
163-
pubspec.lock
164-
server/functions/firebase_options.json
40+
41+
**/firebase_options.json
42+
server/firebase/functions/firebase_options.json
43+
server/firebase/.firebaserc

.hintrc

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,7 @@
33
"development"
44
],
55
"hints": {
6-
"meta-viewport": "off",
7-
"axe/language": [
8-
"default",
9-
{
10-
"html-has-lang": "off"
11-
}
12-
],
6+
"disown-opener": "off",
137
"typescript-config/consistent-casing": "off",
148
"typescript-config/strict": "off"
159
}

.vscode/settings.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
22
"java.compile.nullAnalysis.mode": "automatic",
3-
"java.configuration.updateBuildConfiguration": "interactive"
3+
"java.configuration.updateBuildConfiguration": "interactive",
4+
"eslint.workingDirectories": [
5+
"./server/express",
6+
"./server/firebase/functions",
7+
]
48
}

README.md

Lines changed: 9 additions & 2 deletions

client/.gitignore

Lines changed: 163 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
migrate_working_dir/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# The .vscode folder contains launch configuration and tasks you configure in
20+
# VS Code which you may wish to be included in version control, so this line
21+
# is commented out by default.
22+
#.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
**/doc/api/
26+
**/ios/Flutter/.last_build_id
27+
.dart_tool/
28+
.flutter-plugins
29+
.flutter-plugins-dependencies
30+
.pub-cache/
31+
.pub/
32+
**/build/
33+
34+
# Symbolication related
35+
app.*.symbols
36+
37+
# Obfuscation related
38+
app.*.map.json
39+
40+
# Android Studio will place build artifacts here
41+
/android/app/debug
42+
/android/app/profile
43+
/android/app/release
44+
android/.gitignore
45+
android/build.gradle
46+
android/gradle.properties
47+
android/settings.gradle
48+
android/app/build.gradle
49+
android/app/src/debug/AndroidManifest.xml
50+
android/app/src/main/AndroidManifest.xml
51+
android/app/src/main/java/com/getflutterfire/get_flutter_fire/MainActivity.java
52+
android/app/src/main/res/drawable/launch_background.xml
53+
android/app/src/main/res/drawable-v21/launch_background.xml
54+
android/app/src/main/res/mipmap-hdpi/ic_launcher.png
55+
android/app/src/main/res/mipmap-mdpi/ic_launcher.png
56+
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
57+
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
58+
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
59+
android/app/src/main/res/values/styles.xml
60+
android/app/src/main/res/values-night/styles.xml
61+
android/app/src/profile/AndroidManifest.xml
62+
android/gradle/wrapper/gradle-wrapper.properties
63+
ios/.gitignore
64+
ios/Flutter/Debug.xcconfig
65+
ios/Flutter/Release.xcconfig
66+
ios/Runner/AppDelegate.swift
67+
ios/Runner/Runner-Bridging-Header.h
68+
ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
69+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
70+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
71+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
72+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
73+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
74+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
75+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
76+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
77+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
78+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
79+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
80+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
81+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
82+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
83+
ios/Runner/Assets.xcassets/AppIcon.appiconset/[email protected]
84+
ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
85+
ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
86+
ios/Runner/Assets.xcassets/LaunchImage.imageset/[email protected]
87+
ios/Runner/Assets.xcassets/LaunchImage.imageset/[email protected]
88+
ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
89+
ios/Runner/Base.lproj/LaunchScreen.storyboard
90+
ios/Runner/Base.lproj/Main.storyboard
91+
ios/Runner.xcodeproj/project.pbxproj
92+
ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
93+
ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
94+
ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
95+
ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
96+
ios/Runner.xcworkspace/contents.xcworkspacedata
97+
ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
98+
ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
99+
ios/RunnerTests/RunnerTests.swift
100+
linux/.gitignore
101+
linux/CMakeLists.txt
102+
linux/main.cc
103+
linux/my_application.cc
104+
linux/my_application.h
105+
linux/flutter/CMakeLists.txt
106+
linux/flutter/generated_plugin_registrant.cc
107+
linux/flutter/generated_plugin_registrant.h
108+
linux/flutter/generated_plugins.cmake
109+
macos/.gitignore
110+
macos/Flutter/Flutter-Debug.xcconfig
111+
macos/Flutter/Flutter-Release.xcconfig
112+
macos/Flutter/GeneratedPluginRegistrant.swift
113+
macos/Runner/AppDelegate.swift
114+
macos/Runner/DebugProfile.entitlements
115+
macos/Runner/MainFlutterWindow.swift
116+
macos/Runner/Release.entitlements
117+
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png
118+
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png
119+
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png
120+
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png
121+
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png
122+
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png
123+
macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png
124+
macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
125+
macos/Runner/Base.lproj/MainMenu.xib
126+
macos/Runner/Configs/AppInfo.xcconfig
127+
macos/Runner/Configs/Debug.xcconfig
128+
macos/Runner/Configs/Release.xcconfig
129+
macos/Runner/Configs/Warnings.xcconfig
130+
macos/Runner.xcodeproj/project.pbxproj
131+
macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
132+
macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
133+
macos/Runner.xcworkspace/contents.xcworkspacedata
134+
macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
135+
macos/RunnerTests/RunnerTests.swift
136+
web/favicon.png
137+
web/index.html
138+
web/manifest.json
139+
web/icons/Icon-192.png
140+
web/icons/Icon-512.png
141+
web/icons/Icon-maskable-192.png
142+
web/icons/Icon-maskable-512.png
143+
windows/.gitignore
144+
windows/CMakeLists.txt
145+
windows/flutter/CMakeLists.txt
146+
windows/flutter/generated_plugin_registrant.cc
147+
windows/flutter/generated_plugin_registrant.h
148+
windows/flutter/generated_plugins.cmake
149+
windows/runner/CMakeLists.txt
150+
windows/runner/flutter_window.cpp
151+
windows/runner/flutter_window.h
152+
windows/runner/main.cpp
153+
windows/runner/resource.h
154+
windows/runner/runner.exe.manifest
155+
windows/runner/Runner.rc
156+
windows/runner/utils.cpp
157+
windows/runner/utils.h
158+
windows/runner/win32_window.cpp
159+
windows/runner/win32_window.h
160+
windows/runner/resources/app_icon.ico
161+
lib/firebase_options.dart
162+
pubspec.lock
163+
server/functions/firebase_options.json

client/.hintrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"extends": [
3+
"development"
4+
],
5+
"hints": {
6+
"meta-viewport": "off",
7+
"axe/language": [
8+
"default",
9+
{
10+
"html-has-lang": "off"
11+
}
12+
],
13+
"typescript-config/consistent-casing": "off",
14+
"typescript-config/strict": "off"
15+
}
16+
}
File renamed without changes.

LICENSE renamed to client/LICENSE

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)