Skip to content

Code Structure

Andrea Velásquez edited this page Jun 27, 2019 · 4 revisions

Backend

yapay-spring-boot
    ├── pom.xml
    ├── src
    │   ├── main
    │   │   ├── java
    │   │   │   └── com
    │   │   │       └── project
    │   │   │           └── yapayspringboot
    │   │   │               ├── YapaySpringBootApplication.java
    │   │   │               ├── controller
    │   │   │               │   └── PaymentController.java
    │   │   │               ├── dao
    │   │   │               │   └── PaymentDao.java
    │   │   │               ├── model
    │   │   │               │   ├── Company.java
    │   │   │               │   └── Payment.java
    │   │   │               └── service
    │   │   │                   └── PaymentService.java
    │   │   └── resources
    │   │       └── application.properties
    │   └── test
    │       └── java
    │           └── com
    │               └── project
    │                   └── yapayspringboot
    │                       └── YapaySpringBootApplicationTests.java
    |
    ├── yapay-spring-boot.iml
    └── yapay.log

Frontend (YaPay website)

yapay_frontend
├── package.json
├── public
│   └── index.html
├── src
│   ├── App.vue
│   ├── assets
│   ├── components
│   ├── css
│   ├── images
│   └── main.js
└── vue.config.js

Dummy Yape App

...
assets/
|-- app/
|-- |-- bootstrap.js
|-- |-- [application logic]
|-- internal/
|-- metadata/
|-- tns_modules/
|-- |-- application/
|-- |-- http/
|-- |-- [more modules]
...
libs/
|-- armeabi-v7a/
|-- |-- libNativeScript.so
|-- x86/
|-- |-- libNativeScript.so
|-- gson-2.2.4.jar
|-- nativescript.jar
|-- android-binding-generator.jar
|-- android-support-v4.jar
...
Clone this wiki locally