Skip to content

Files and directories

Robert edited this page Apr 29, 2021 · 2 revisions

Backend directory structure:

├───main
│   ├───java
│   │   └───pl
│   │       └───library
│   │           ├───adapters
│   │           │   └───mysql
│   │           │       └───model
│   │           │           ├───book
│   │           │           ├───borrow
│   │           │           ├───genre
│   │           │           ├───role
│   │           │           └───user
│   │           ├───api
│   │           │   ├───book
│   │           │   │   ├───dto
│   │           │   │   └───exception
│   │           │   ├───borrow
│   │           │   │   ├───dto
│   │           │   │   └───exception
│   │           │   ├───error
│   │           │   ├───genre
│   │           │   │   ├───dto
│   │           │   │   └───exception
│   │           │   └───user
│   │           │       ├───dto
│   │           │       └───exception
│   │           ├───domain
│   │           │   ├───book
│   │           │   │   ├───exception
│   │           │   │   └───repository
│   │           │   ├───borrow
│   │           │   │   ├───exception
│   │           │   │   └───repository
│   │           │   ├───genre
│   │           │   │   ├───exception
│   │           │   │   └───repository
│   │           │   ├───role
│   │           │   │   └───repository
│   │           │   └───user
│   │           │       ├───exception
│   │           │       └───repository
│   │           └───infrastructure
│   └───resources
└───test
    ├───java
    │   └───pl
    │       └───library
    │           └───domain
    │               ├───adapters
    │               ├───book
    │               ├───borrow
    │               ├───genre
    │               └───user
    └───resources

Frontend directory structure

├───actions
├───assets
│   ├───img
│   └───layout
├───components
│   ├───atoms
│   │   ├───Button
│   │   ├───Heading
│   │   ├───Input
│   │   ├───NavbarButton
│   │   └───Textarea
│   ├───molecules
│   │   ├───Loader
│   │   └───OneBook
│   └───organisms
│       ├───BookList
│       ├───BooksNews
│       ├───BorrowedStatusList
│       ├───DetailsBook
│       ├───Footer
│       ├───GenreList
│       └───Sidebar
├───data
├───globalStyles
├───reducers
├───store
├───stories
│   └───assets
├───template
└───view
    ├───admin
    └───user
Clone this wiki locally