Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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:testdb

spring.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
```