https://github.com/colinbut/todays-menu
Small simple Java web app on Spring Boot that displays today's food menu
https://github.com/colinbut/todays-menu
bootstrap3 css h2 h2-database hibernate html java java-8 javascript jpa jquery js lombok spring spring-boot spring-data spring-data-jpa thymeleaf thymeleaf-template-engine webjars
Last synced: 6 months ago
JSON representation
Small simple Java web app on Spring Boot that displays today's food menu
- Host: GitHub
- URL: https://github.com/colinbut/todays-menu
- Owner: colinbut
- Created: 2018-05-21T15:37:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-03T16:55:02.000Z (over 6 years ago)
- Last Synced: 2025-02-01T14:46:07.051Z (8 months ago)
- Topics: bootstrap3, css, h2, h2-database, hibernate, html, java, java-8, javascript, jpa, jquery, js, lombok, spring, spring-boot, spring-data, spring-data-jpa, thymeleaf, thymeleaf-template-engine, webjars
- Language: Java
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todays Menu
This is a simple web application that displays the food menu for today.
### Tech Stack
- Java 8
- H2 DB
- Hibernate
- Spring Boot
- Spring Data JPA
- Thymeleaf (template engine)
- HTML/CSS/JS - Bootstrap & JQueryother third party libraries:
- Lombok
- JodaTime
- WebJars
### Run Locally```bash
./mvnw spring-boot:run
```### Local Development
You can log on to the Database to inspect it during development.
This application currently uses H2 as an embedded database.
To check the Database, you can fire up the H2 console from:
http://localhost:8080/h2-console
port 8080 of the app is the default port (left untouched from default configurations)
then enter the H2 DB Url as:
__jdbc:h2:mem:testdb__
leave username as it is and password blank.
### Demo
The demo web app is deployed onto ...
You can visit the web app here:
[TBD]