Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Ciber committed Aug 20, 2021
0 parents commit f6ad856
Show file tree
Hide file tree
Showing 312 changed files with 5,084 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Informe de error
about: Crea un informe de error para ayudarnos a mejorar
title: '[BUG] '
labels: 'bug'
assignees: ''

---

**Describe el error**
Una descripción clara y concisa de cuál es el error.

**Reproducir**
Pasos para reproducir el comportamiento:
1. Vaya a '...'
2. Haga clic en '....'
3. Desplácese hacia abajo hasta '....'
4. Ver error

**Comportamiento esperado**
Una descripción clara y concisa de lo que esperaba que sucediera.

**Capturas de pantalla**
Si corresponde, agregue capturas de pantalla para ayudar a explicar su problema.

**Escritorio (complete la siguiente información):**
- SO: [p. Ej. iOS]
- Navegador [p. Ej. cromo, safari]
- Versión [p. Ej. 22]

**Smartphone (complete la siguiente información):**
- Dispositivo: [p. Ej. iphone 6]
- SO: [p. Ej. iOS8.1]
- Navegador [p. Ej. navegador de valores, safari]
- Versión [p. Ej. 22]

**Contexto adicional**
Agregue aquí cualquier otro contexto sobre el problema.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Solicitud de característica
about: Sugerir una idea para este proyecto
title: '[FEATURE] '
labels: 'feature'
assignees: ''

---

**¿Su solicitud de característica está relacionada con un problema? Por favor describa.**
Una descripción clara y concisa de cuál es el problema. Ex. Siempre me frustra cuando [...]

**Describe la solución que te gustaría**
Una descripción clara y concisa de lo que quieres que suceda.

**Describe las alternativas que has considerado**
Una descripción clara y concisa de cualquier solución o característica alternativa que haya considerado.

**Contexto adicional**
Agregue cualquier otro contexto o capturas de pantalla sobre la solicitud de función aquí.
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!--
¡Gracias por contribuir!
Proporcione una descripción de sus cambios a continuación y un resumen general en el título.
Consulte la siguiente lista de verificación para asegurarse de que su RP pueda ser aceptado rápidamente:
-->

## Descripción

<!--- Describe tus cambios en detalle -->

## Tipo de cambio

<!--- Ponga una `x` en todas las casillas que correspondan: -->

- [] ✨ Nueva función (cambio inquebrantable que agrega funcionalidad)
- [] 🛠️ Corrección de errores (cambio permanente que soluciona un problema)
- [] ❌ Cambio rotundo (corrección o característica que haría que cambiara la funcionalidad existente)
- [] 🧹 Refactor de código
- [] ✅ Cambio de configuración de compilación
- [] 📝 Documentación
- [] 🗑️ Tarea
127 changes: 127 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
# Miscellaneous
*.class
*.lock
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/*

# Visual Studio Code related
.classpath
.project
.settings/
.vscode/*

# Flutter repo-specific
/bin/cache/
/bin/mingit/
/dev/benchmarks/mega_gallery/
/dev/bots/.recipe_deps
/dev/bots/android_tools/
/dev/docs/doc/
/dev/docs/flutter.docs.zip
/dev/docs/lib/
/dev/docs/pubspec.yaml
/dev/integration_tests/**/xcuserdata
/dev/integration_tests/**/Pods
/packages/flutter/coverage/
version

# packages file containing multi-root paths
.packages.generated

# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
build/
flutter_*.png
linked_*.ds
unlinked.ds
unlinked_spec.ds
.fvm/

# Android related
**/android/**/gradle-wrapper.jar
**/android/.gradle
**/android/captures/
**/android/gradlew
**/android/gradlew.bat
**/android/local.properties
**/android/**/GeneratedPluginRegistrant.java
**/android/key.properties
**/android/.idea/
*.jks

# iOS/XCode related
**/ios/**/*.mode1v3
**/ios/**/*.mode2v3
**/ios/**/*.moved-aside
**/ios/**/*.pbxuser
**/ios/**/*.perspectivev3
**/ios/**/*sync/
**/ios/**/.sconsign.dblite
**/ios/**/.tags*
**/ios/**/.vagrant/
**/ios/**/DerivedData/
**/ios/**/Icon?
**/ios/**/Pods/
**/ios/**/.symlinks/
**/ios/**/profile
**/ios/**/xcuserdata
**/ios/.generated/
**/ios/Flutter/App.framework
**/ios/Flutter/Flutter.framework
**/ios/Flutter/Flutter.podspec
**/ios/Flutter/Generated.xcconfig
**/ios/Flutter/app.flx
**/ios/Flutter/app.zip
**/ios/Flutter/.last_build_id
**/ios/Flutter/flutter_assets/
**/ios/Flutter/flutter_export_environment.sh
**/ios/ServiceDefinitions.json
**/ios/Runner/GeneratedPluginRegistrant.*

# Coverage
coverage/

# Submodules
!pubspec.lock
packages/**/pubspec.lock

# Web related
lib/generated_plugin_registrant.dart

# Symbolication related
app.*.symbols

# Obfuscation related
app.*.map.json

# Exceptions to the above rules.
!**/ios/**/default.mode1v3
!**/ios/**/default.mode2v3
!**/ios/**/default.pbxuser
!**/ios/**/default.perspectivev3
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
!/dev/ci/**/Gemfile.lock
!.vscode/extensions.json
!.vscode/launch.json
!.idea/codeStyles/
!.idea/dictionaries/
!.idea/runConfigurations/
7 changes: 7 additions & 0 deletions .idea/runConfigurations/development.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/runConfigurations/production.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/runConfigurations/staging.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .metadata
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.

version:
revision: 9b2d32b605630f28625709ebd9d78ab3016b2bf6
channel: stable

project_type: app
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"dart-code.dart-code",
"dart-code.flutter",
"felixangelov.bloc"
]
}
34 changes: 34 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch development",
"request": "launch",
"type": "dart",
"program": "lib/main_development.dart",
"args": [
"--flavor",
"development",
"--target",
"lib/main_development.dart"
]
},
{
"name": "Launch staging",
"request": "launch",
"type": "dart",
"program": "lib/main_staging.dart",
"args": ["--flavor", "staging", "--target", "lib/main_staging.dart"]
},
{
"name": "Launch production",
"request": "launch",
"type": "dart",
"program": "lib/main_production.dart",
"args": ["--flavor", "production", "--target", "lib/main_production.dart"]
}
]
}
35 changes: 35 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
.PHONY: generate
generate:
flutter packages pub run build_runner build --delete-conflicting-outputs

.PHONY: run
run:
flutter run --flavor development --target lib/main_development.dart

.PHONY: build
build:
flutter build apk --flavor production --target lib/main_production.dart

.PHONY: run-prod
run-prod:
flutter run --flavor production --target lib/main_production.dart

.PHONY: build-dev
build-dev:
flutter build apk --flavor development --target lib/main_development.dart

.PHONY: splash
splash:
flutter packages pub run flutter_native_splash:create
rm -r android/app/src/development/res
rm -r android/app/src/staging/res
cp -r android/app/src/main/res android/app/src/development
cp -r android/app/src/main/res android/app/src/staging

.PHONY: icon
icon:
flutter pub run flutter_launcher_icons:main
rm -r android/app/src/development/res
rm -r android/app/src/staging/res
cp -r android/app/src/main/res android/app/src/development
cp -r android/app/src/main/res android/app/src/staging
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# TODO

![logo](logo.png)

[![tests](https://github.com/todo-devs/todo/workflows/tests/badge.svg?branch=main)](https://github.com/todo-devs/todo/actions?query=workflow%3Atests)
[![Last commit](https://img.shields.io/github/last-commit/todo-devs/todo.svg?style=flat)](https://github.com/todo-devs/todo/commits)
[![GitHub commit activity](https://img.shields.io/github/commit-activity/m/todo-devs/todo)](https://github.com/todo-devs/todo/commits)
[![Github Stars](https://img.shields.io/github/stars/todo-devs/todo?style=flat&logo=github)](https://github.com/todo-devs/todo/stargazers)
[![Github Forks](https://img.shields.io/github/forks/todo-devs/todo?style=flat&logo=github)](https://github.com/todo-devs/todo/network/members)
[![Github Watchers](https://img.shields.io/github/watchers/todo-devs/todo?style=flat&logo=github)](https://github.com/todo-devs/todo)
[![GitHub contributors](https://img.shields.io/github/contributors/todo-devs/todo)](https://github.com/todo-devs/todo/graphs/contributors)
[![visitors](https://visitor-badge.glitch.me/badge?page_id=todo-devs.todo)]()

Aplicación auxiliar para ayudar al usuario a consultar y acceder a los servicios de ETECSA.

14 changes: 14 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
include: package:very_good_analysis/analysis_options.2.3.0.yaml
linter:
rules:
public_member_api_docs: false

analyzer:
strong-mode:
implicit-dynamic: true
exclude:
- "**/*.g.dart"
- "**/*.freezed.dart"
- "**/dependencies.config.dart"
errors:
invalid_annotation_target: ignore
11 changes: 11 additions & 0 deletions android/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java

# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
Loading

0 comments on commit f6ad856

Please sign in to comment.