Initial deploy commit

This commit is contained in:
rckrdmrd 2025-12-12 14:39:24 -06:00
commit 49c53d188f
7 changed files with 14573 additions and 0 deletions

33
.gitignore vendored Normal file
View File

@ -0,0 +1,33 @@
# Dependencies
node_modules/
# Build output
dist/
build/
# Environment files (local)
.env
.env.local
.env.*.local
# IDE
.idea/
.vscode/
*.swp
*.swo
# Logs
*.log
npm-debug.log*
# Coverage
coverage/
.nyc_output/
# OS
.DS_Store
Thumbs.db
# Cache
.cache/
.parcel-cache/

37
App.tsx Normal file
View File

@ -0,0 +1,37 @@
/**
* App Component - React Native + Expo
* MVP Sistema Administración de Obra e INFONAVIT
*/
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text style={styles.title}>🏗 Sistema Administración de Obra</Text>
<Text style={styles.subtitle}>App Móvil - Supervisor</Text>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
padding: 20,
},
title: {
fontSize: 24,
fontWeight: 'bold',
marginBottom: 8,
textAlign: 'center',
},
subtitle: {
fontSize: 16,
color: '#666',
},
});

43
README.md Normal file
View File

@ -0,0 +1,43 @@
# Frontend Mobile - MVP Sistema Administración de Obra
**Stack:** React Native + Expo
**Versión:** 1.0.0
**Fecha:** 2025-11-20
---
## 📋 DESCRIPCIÓN
Aplicación móvil para supervisores de obra.
**Funcionalidades principales:**
- Registro de avances
- Captura fotográfica
- Gestión de materiales en sitio
- Reportes rápidos
---
## 🚀 SETUP
```bash
npm install
npm start
```
Luego escanea el QR con Expo Go app.
---
## 📝 SCRIPTS
| Script | Descripción |
|--------|-------------|
| `npm start` | Inicia Expo |
| `npm run android` | Abre en Android |
| `npm run ios` | Abre en iOS |
---
**Mantenido por:** Frontend-Agent
**Última actualización:** 2025-11-20

32
app.json Normal file
View File

@ -0,0 +1,32 @@
{
"expo": {
"name": "Sistema Obra - Mobile",
"slug": "construccion-mvp-mobile",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.construccion.mvp"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.construccion.mvp"
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}

14386
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

28
package.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "@construccion-mvp/frontend-mobile",
"version": "1.0.0",
"description": "Frontend Mobile - MVP Sistema Administración de Obra e INFONAVIT",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
},
"dependencies": {
"expo": "~50.0.0",
"expo-status-bar": "~1.11.1",
"react": "18.2.0",
"react-native": "0.73.0",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.17",
"zustand": "^4.4.7",
"axios": "^1.6.2"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@types/react": "~18.2.45",
"typescript": "^5.1.3"
},
"private": true
}

14
tsconfig.json Normal file
View File

@ -0,0 +1,14 @@
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"paths": {
"@/*": ["./src/*"],
"@screens/*": ["./src/screens/*"],
"@components/*": ["./src/components/*"],
"@stores/*": ["./src/stores/*"],
"@services/*": ["./src/services/*"],
"@utils/*": ["./src/utils/*"]
}
}
}