https://github.com/alevidals/trello-clone
A Trello Clone made with React and Java Spring
https://github.com/alevidals/trello-clone
Last synced: 2 months ago
JSON representation
A Trello Clone made with React and Java Spring
- Host: GitHub
- URL: https://github.com/alevidals/trello-clone
- Owner: alevidals
- Created: 2024-06-24T14:35:12.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-11T11:49:04.000Z (11 months ago)
- Last Synced: 2025-01-22T03:14:05.853Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 256 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Trello Clone
Welcome to this project, this is a [Trello](https://trello.com/) clone (just the basics) created to improve on [Next.JS](https://nextjs.org/) and [Spring](https://spring.io/).
As I mentioned the backend is created using [Spring](https://spring.io/) and the frontend using [Next.JS](https://nextjs.org/).
----
Table of contents- [Trello Clone](#trello-clone)
- [To start](#to-start)
- [Prerequisites](#prerequisites)
- [Installation and start](#installation-and-start)
- [Back](#back)
- [Front](#front)# To start
## Prerequisites
- Node > 20 version. You can use [NVM](https://github.com/nvm-sh/nvm?tab=readme-ov-file#installing-and-updating) to setup a node version manager
- Package manager (pnpm)
- Docker
- Java > 22 version.
- Maven cli
## Installation and start
### Back
```sh
cd back
docker compose up --detach
mvn spring-boot:run
```### Front
```sh
cd front
pnpm i
pnpm dev
```