https://github.com/cristobalgvera/tindet-pet
Learning app based on ReCoders challenge
https://github.com/cristobalgvera/tindet-pet
java postgresql react spring-boot typescript
Last synced: 3 months ago
JSON representation
Learning app based on ReCoders challenge
- Host: GitHub
- URL: https://github.com/cristobalgvera/tindet-pet
- Owner: cristobalgvera
- Created: 2020-11-16T07:29:48.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-16T11:47:11.000Z (over 5 years ago)
- Last Synced: 2025-12-26T21:53:11.079Z (7 months ago)
- Topics: java, postgresql, react, spring-boot, typescript
- Language: TypeScript
- Homepage:
- Size: 954 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
App based on [ReCoders Challenge](https://github.com/cristobalgvera/tindet-pet/blob/main/extras/ReCoders%20Challenge%20-%20Full%20Stack%20Java.pdf).
## Languages and technologies used
### Backend
- Java 15.
- Spring Boot 2.4.0.
- PostgreSQL 13.
### Frontend
- TypeScript 4.0.
- React 17.0.1.
## To test it
Both, backend and frontend, needs to be running, so:
### Backend
Assuming you have Java and Gradle installed...
``` powershell
cd tinder-pet-api
gradle bootRun
```
Also you can run the API with whatever Spring run method you want, i.e.: IDE-based method.
### Frontend
Assuming you have npm installed...
``` powershell
cd tinder-pet-web
npm i
npm start
```