Coder Social home page Coder Social logo

pablolionel / clubdisca Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 1.52 MB

Proyecto info. 2019 para Club Discas 🐕, una organización protectora de animales destinada el bienestar del mejor amigo del hombre 🐶 y todo pequeño de cuatro patas que se le parezca 🐈.

JavaScript 2.78% TypeScript 62.96% HTML 27.84% CSS 6.42%

clubdisca's Introduction

ClubDisca

Proyecto info. 2019 para Club Discas 🐕, una organización protectora de animales destinada el bienestar del mejor amigo del hombre 🐶 y todo pequeño de cuatro patas que se le parezca 🐈.

This project was generated with Angular CLI version 8.2.1.

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.

Running unit tests

Run ng test to execute the unit tests via Karma.

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via Protractor.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

Project structure

Aclaraciones

  • Datasource: se implementan mediante un servicio en un componente, sin embargo el comando ng g s no tiene la opcion --type para reescribir el tipo generado por lo que tendremos que generar un servicio, y cambiarlo manualmente: exaple.service.ts --> example.datasource.ts
src:
├── app:
│   ├── common:
│   │   └── [ng g @angular/material:material-nav --name=common/menu --skip-tests] Menú de navegación (component):
│   │   
│   ├── [ng g s shared/services/contact --skip-tests] Shared (Modulo):
│   │   │  
│   │   └── ...
│   │   
│   ├── [ng g p shared/pipes/filter] Filter (Modulo):
│   │     Filter: filter para listas generadas con *ngFor
│   │
│   ├── [ng g m shared/pipes/pipe] Shared (Modulo):
│   │   │  
│   │   └── ...
│   │   
│   ├── [ng g m core] Core (Modulo):
│   │   │    Es muy parecido a un modulo helper o utils ya que
│   │   │  contiene servicios, componentes, etc. que se podrian
│   │   │  adaptar a otros proyectos pero los mismos estan
│   │   │  pensasdos sobre la logica de negocio.
│   │   └── ...
│   │   
│   ├── [ng g c auth --skip-tests] Login (component):
│   │   │   │ Contiene:
│   │   │   │    * signin
│   │   │   │    * signup
│   │   │   │
│   │   │   └── [ng g m auth --routing]
│   │   │
│   │   ├── [ng g c SignIn --skip-tests] SignIn (component):
│   │   │   │
│   │   │   └── [ng g m SignIn --routing]
│   │   │       └──[ng g c login/application-card/application]
│   │   │
│   │   └── [ng g c SignUp --skip-tests] SignIn (component):
│   │       │
│   │       └── [ng g m SignUp --routing]
│   │           └──[ng g c login/application-card/application]
│   │   
│   ├── [ng g c Profile --skip-tests] Profile (component):
│   │   │    .
│   │   ├── [ng g m Profile --routing]
│   │   │    .
│   │   ├── [ng g c profile/EditProfile --skip-tests] EditProfil (component)
│   │   │   │   
│   │   │   └── [ng g m profile/EditProfile --routing]
│   │   │
│   │   └── [ng g c profile/publications --skip-tests] EditProfil (component)
│   │       │   
│   │       └── [ng g m profile/publications --routing]
│   │   
│   ├── [ng g c Conversation --skip-tests] Conversation (component)
│   │   │    .
│   │   ├── [ng g m Conversation --routing]
│   │   │    .
│   │   └── ...
│   │
│   ├── [ng g c notifications --skip-tests] notifications (component):
│   │   │
│   │   ├── [ng g m notifications --routing]
│   │   │
│   │   └── ...
│   │
│   ├── [ng g c about --skip-tests] about (component):
│   │   │
│   │   ├── [ng g m about --routing]
│   │   └── ...
│   │
│   ├── [ng g c contact --skip-tests] contact (component):
│   │   │
│   │   ├── [ng g m contact --routing]
│   │   │
│   │   └── [ng g s contact/contact --skip-tests] ContactDataSource (datasource)
│   │
│   ├── [ng g c home --skip-tests] Home (component):
│   │   │    Muestra el sitio con inicio de sesión.
│   │   │    Contiene:
│   │   │       * Contar una historia ()
│   │   │       * historias
│   │   │   
│   │   ├── [ng g c home/PostStory --skip-tests]
│   │   │   │
│   │   │   └── [ng g m home/PostStory --routing]
│   │   │   
│   │   ├── [ng g c home/stories --skip-tests]
│   │   │   │
│   │   │   └── [ng g m home/Stories --routing]
│   │   │   
│   │   └── ...
│   │   
│   └── ...
│   
└── ...

clubdisca's People

Contributors

pablolionel avatar sebastian-rodriguez avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.