Skip to content

Commit 27062f2

Browse files
committed
first commit
0 parents  commit 27062f2

File tree

1,176 files changed

+145105
-0
lines changed

Some content is hidden

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

1,176 files changed

+145105
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.DS_Store

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# PAPERLESSQMS PROJECT
2+
* Queue Management Solution for Web Based
3+
4+
## paperlessqms-spring
5+
* mvn wrapper:wrapper
6+
* ./mvnw
7+
* Default http://localhost:8080
8+
9+
10+
## paperlessqms-spring-client
11+
* npm install
12+
* npm start
13+
* Default http://localhost:9001
14+
15+
## flutter project
16+
* flutter run -d chrome --web-port=8081 --web-browser-flag "--disable-web-security"

paperlessqms-flutter/.DS_Store

8 KB
Binary file not shown.

paperlessqms-flutter/buildweb.sh

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#!/bin/bash
2+
3+
4+
echo "script execution COMMON"
5+
cd paperlessqms-common
6+
flutter pub get
7+
8+
echo "script execution ADMIN"
9+
cd ../
10+
cd paperlessqms-admin
11+
flutter build web
12+
13+
echo "script execution CALL"
14+
cd ../
15+
cd paperlessqms-call
16+
flutter build web
17+
18+
echo "script execution CLIENT"
19+
cd ../
20+
cd paperlessqms-client
21+
flutter build web
22+
23+
echo "script execution SUPER"
24+
cd ../
25+
cd paperlessqms-mysuper
26+
flutter build web
27+
28+
echo "script execution KIOSK"
29+
cd ../
30+
cd paperlessqms-kiosk
31+
flutter build web
32+
33+
cd ../
34+
35+
echo "script execution complete"

paperlessqms-flutter/clean.sh

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#!/bin/bash
2+
3+
4+
echo "script execution COMMON"
5+
cd paperlessqms-common
6+
flutter clean
7+
8+
echo "script execution ADMIN"
9+
cd ../
10+
cd paperlessqms-admin
11+
flutter clean
12+
13+
echo "script execution CALL"
14+
cd ../
15+
cd paperlessqms-call
16+
flutter clean
17+
18+
echo "script execution CLIENT"
19+
cd ../
20+
cd paperlessqms-client
21+
flutter clean
22+
23+
echo "script execution SUPER"
24+
cd ../
25+
cd paperlessqms-mysuper
26+
flutter clean
27+
28+
echo "script execution KIOSK"
29+
cd ../
30+
cd paperlessqms-kiosk
31+
flutter clean
32+
33+
cd ../
34+
35+
echo "script execution complete"
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: "41456452f29d64e8deb623a3c927524bcf9f111b"
8+
channel: "stable"
9+
10+
project_type: app
11+
12+
# Tracks metadata for the flutter migrate command
13+
migration:
14+
platforms:
15+
- platform: root
16+
create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
17+
base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
18+
- platform: android
19+
create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
20+
base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
21+
- platform: ios
22+
create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
23+
base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
24+
- platform: linux
25+
create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
26+
base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
27+
- platform: macos
28+
create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
29+
base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
30+
- platform: web
31+
create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
32+
base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
33+
- platform: windows
34+
create_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
35+
base_revision: 41456452f29d64e8deb623a3c927524bcf9f111b
36+
37+
# User provided section
38+
39+
# List of Local paths (relative to this file) that should be
40+
# ignored by the migrate tool.
41+
#
42+
# Files that are not part of the templates will be ignored by default.
43+
unmanaged_files:
44+
- 'lib/main.dart'
45+
- 'ios/Runner.xcodeproj/project.pbxproj'
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "paperlessqms-admin",
9+
"request": "launch",
10+
"type": "dart"
11+
},
12+
{
13+
"name": "paperlessqms-admin (profile mode)",
14+
"request": "launch",
15+
"type": "dart",
16+
"flutterMode": "profile"
17+
},
18+
{
19+
"name": "paperlessqms-admin (release mode)",
20+
"request": "launch",
21+
"type": "dart",
22+
"flutterMode": "release"
23+
}
24+
]
25+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"java.compile.nullAnalysis.mode": "automatic"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Copyright (c) Since 2024 Wheref.com and Contributors.
2+
3+
PaperlessQMS is licensed under OSL-3.0

0 commit comments

Comments
 (0)