Skip to content

Commit

Permalink
docs: ajout structure du projet dans le README
Browse files Browse the repository at this point in the history
  • Loading branch information
nathancailbourdin committed Jul 22, 2024
1 parent 4e2d958 commit aa303d0
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,66 @@ And has a number of custom enhancements :
- Multidomain and dynamic redirection on a specific domain


# Project Structure

All the important parts of the project are listed below:

```
.
├── .github
│ ├── workflows
│ │ └── build.yml
│ └── ...
|
├── ci
│ ├── ldap
│ | └── ...
│ ├── python
│ | └── ...
│ └── redis
│ └── ...
|
├── etc
│ └── cas
│ └── config
│ └── log4j2.xml
|
├── puppeteer
│ ├── scenarios
| | ├── scenario1.js
| | ├── scenario2.js
| | └── ...
│ ├── package.json
│ └── run.sh
|
├── src
│ └── main
│ ├── java
│ │ └── org
│ │ └── apereo
│ │ └── cas
│ │ ├── config
│ │ │ ├── CustomInterruptConfiguration.java
│ │ │ └── RedisTicketRegistryConfiguration.java
│ │ ├── interrupt
│ │ │ └── DomainChangeInterruptInquirer.java
│ │ └── ticket
│ │ └── RedisTicketRegistry.java
| └── resources
| ├── META-INF
| └── spring
| └── org.springframework.boot.autoconfigure.AutoConfiguration.imports
| ├── application-test.yml
| └── application.yml
|
├── build.gradle
├── README.md
├── gradle.properties
├── settings.gradle
└── start-ci.sh
```


# Build

To build the project, use:
Expand Down

0 comments on commit aa303d0

Please sign in to comment.