This is an implementation of a blog platform, crafted using Spring Boot with Kotlin, and React with TypeScript. It's still under heavy development (meaning it's almost unusable right now).
- Java 21 or higher
- Node 20 or higher
- Docker
To streamline the setup process and ensure consistency across platforms, we utilize Docker for our development environment. This contains all the necessary third-party software required for this project.
Run the following command in the project's root directory:
$ docker compose up
Also, the app requires service domain except localhost so that login cookie works. Let's add a line like following in /etc/hosts
:
127.0.0.1 ktlog.local
Execute the following commands to boot up the Spring Boot process.
$ cd backend
$ ./gradlew bootRun
By running the following commands, React will start monitoring changes in the frontend/
directory. If any changes are detected, React will automatically restart to reflect the changes.
$ cd frontend
$ npm i
$ npm run dev
Together with Backend, the entire system will start serving at http://ktlog.local:5173