Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jewishlewish/wind-tempos
WIND TEMPOS!
https://github.com/jewishlewish/wind-tempos
Last synced: about 1 month ago
JSON representation
WIND TEMPOS!
- Host: GitHub
- URL: https://github.com/jewishlewish/wind-tempos
- Owner: JewishLewish
- Created: 2023-09-22T19:55:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-03T20:50:20.000Z (about 1 year ago)
- Last Synced: 2023-12-30T17:54:55.118Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 112 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Structure Tree
```python
├── .gitignore
├── .mvn
│ └── wrapper
│ ├── maven-wrapper.jar
│ └── maven-wrapper.properties
├── .vscode
│ └── settings.json
├── mvnw
├── mvnw.cmd
├── pom.xml
├── questions.json
├── site
├── src
│ ├── main <-- Where the Action Happens >
│ │ ├── java
│ │ │ └── mis
│ │ │ └── jewishlewish
│ │ │ └── demo <---- THIS IS WHERE THE ACTION HAPPENS >
│ │ │ ├── AppController.java
│ │ │ ├── json.java
│ │ │ ├── Py.java
│ │ │ └── ThymeleafeDemoApplication.java
│ │ └── resources <--- THIS IS WEBSITE CONTENT >
│ │ ├── application.properties
│ │ ├── static
│ │ │ ├── bootstrap
│ │ │ │ ├── css
│ │ │ │ │ └── bootstrap.min.css
│ │ │ │ └── js
│ │ │ │ └── bootstrap.min.js
│ │ │ ├── css
│ │ │ │ └── Google-Style-Login-.css
│ │ │ └── img
│ │ │ └── avatar_2x.png
│ │ └── templates
│ │ ├── app.html
│ │ └── res.html
│ └── test... <--- Can be ignored>
│
│
└── target <--- Classes>
├── classes
│ ├── application.properties
│ ├── mis
│ │ └── jewishlewish
│ │ └── demo
│ │ ├── AppController.class
│ │ ├── json.class
│ │ ├── Py.class
│ │ └── ThymeleafeDemoApplication.class
│ ├── static
│ │ ├── bootstrap
│ │ │ ├── css
│ │ │ │ └── bootstrap.min.css
│ │ │ └── js
│ │ │ └── bootstrap.min.js
│ │ ├── css
│ │ │ └── Google-Style-Login-.css
│ │ └── img
│ │ └── avatar_2x.png
│ └── templates
│ ├── app.html
│ └── res.html
└── test-classes
└── mis
└── jewishlewish
└── demo
└── DemoApplicationTests.class
```