feat(smart-app): CI/CD pipeline + deploy scripts
Some checks failed
Some checks failed
- .gitea/workflows/build-and-deploy.yml: - Lint + TypeScript check on PR - Expo web build on push to master - Deploy via SSH to server (copy to /var/www/smartapp) - Docker build alternative - Artifact upload for builds - deploy.sh: manual deploy script (web|docker|api|all) - app.json: Expo config with bundle IDs - assets/: generated icons (icon, splash, adaptive, favicon) - Added expo-pwa, html-webpack-plugin, workbox-webpack-plugin deps
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"expo": {
|
||||
"name": "Smart App City",
|
||||
"slug": "smart-app-city",
|
||||
"version": "0.1.0",
|
||||
"orientation": "portrait",
|
||||
"icon": "./assets/icon.png",
|
||||
"userInterfaceStyle": "automatic",
|
||||
"splash": {
|
||||
"image": "./assets/splash.png",
|
||||
"resizeMode": "contain",
|
||||
"backgroundColor": "#1565C0"
|
||||
},
|
||||
"assetBundlePatterns": ["**/*"],
|
||||
"ios": {
|
||||
"supportsTablet": true,
|
||||
"bundleIdentifier": "fr.digitribe.smartapp"
|
||||
},
|
||||
"android": {
|
||||
"adaptiveIcon": {
|
||||
"foregroundImage": "./assets/adaptive-icon.png",
|
||||
"backgroundColor": "#1565C0"
|
||||
},
|
||||
"package": "fr.digitribe.smartapp"
|
||||
},
|
||||
"web": {
|
||||
"favicon": "./assets/favicon.png",
|
||||
"bundler": "webpack"
|
||||
},
|
||||
"plugins": [
|
||||
"expo-localization",
|
||||
"expo-location",
|
||||
"expo-notifications"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
BIN
smart-app-city/frontend/assets/adaptive-icon.png
Normal file
BIN
smart-app-city/frontend/assets/adaptive-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
smart-app-city/frontend/assets/favicon.png
Normal file
BIN
smart-app-city/frontend/assets/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 355 B |
BIN
smart-app-city/frontend/assets/icon.png
Normal file
BIN
smart-app-city/frontend/assets/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
smart-app-city/frontend/assets/splash.png
Normal file
BIN
smart-app-city/frontend/assets/splash.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
Reference in New Issue
Block a user