Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saspal02/ticklist
TickList is a task management app that helps users keep track of their tasks and stay organized. It allows you to: - Add new tasks - Mark tasks as completed - Delete tasks - Stay on top of your daily activities
https://github.com/saspal02/ticklist
css html java javascript maven mysql react springboot
Last synced: 10 days ago
JSON representation
TickList is a task management app that helps users keep track of their tasks and stay organized. It allows you to: - Add new tasks - Mark tasks as completed - Delete tasks - Stay on top of your daily activities
- Host: GitHub
- URL: https://github.com/saspal02/ticklist
- Owner: saspal02
- License: mit
- Created: 2025-01-14T10:20:27.000Z (13 days ago)
- Default Branch: main
- Last Pushed: 2025-01-14T10:42:16.000Z (13 days ago)
- Last Synced: 2025-01-14T11:48:33.352Z (13 days ago)
- Topics: css, html, java, javascript, maven, mysql, react, springboot
- Language: JavaScript
- Homepage:
- Size: 582 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TickList
### Installation
- [Docker](https://docs.docker.com/engine/install/)
- [Mysqlsh](https://dev.mysql.com/doc/mysql-shell/8.0/en/mysql-shell-install.html)### Launch MySQL using Docker
```
docker run --detach --env MYSQL_ROOT_PASSWORD=dummypassword --env MYSQL_USER=todos-user --env MYSQL_PASSWORD=dummytodos --env MYSQL_DATABASE=todos --name mysql --publish 3306:3306 mysql:8-oracle
```### /pom.xml Modified
```
// Deprecated in SB 3.1.x
// Use the below Mysql Dependency Starting from SB 3.1.x
com.mysql
mysql-connector-j```
### /src/main/resources/application.properties Modified
```
#comment-h2
#spring.datasource.url=jdbc:h2:mem:testdbspring.datasource.url=jdbc:mysql://localhost:3306/todos
spring.datasource.username=todos-user
spring.datasource.password=dummytodos
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect
spring.jpa.hibernate.ddl-auto=update
```