https://github.com/anilozmen/spring-boot-vue-security-jwt-auth
Blog with Spring Security, Spring Boot and Vue.js
https://github.com/anilozmen/spring-boot-vue-security-jwt-auth
Last synced: 8 months ago
JSON representation
Blog with Spring Security, Spring Boot and Vue.js
- Host: GitHub
- URL: https://github.com/anilozmen/spring-boot-vue-security-jwt-auth
- Owner: anilozmen
- License: mit
- Created: 2023-05-28T03:27:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-28T04:10:23.000Z (over 2 years ago)
- Last Synced: 2025-03-26T06:23:13.525Z (9 months ago)
- Language: Java
- Size: 1.31 MB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blog with Spring Security, Spring Boot and Vue.js
This GitHub repository contains a Blog App developed using Spring Boot for the backend and Vue.js for the frontend. The application implements JWT authentication for secure user access. The repository serves as a valuable resource for developers seeking to understand the integration of Spring Boot and Vue.js, as well as the implementation of JWT authentication in a real-world application.
## Tech Stack
* Vue.js + Nuxt.js, nuxt/auth
* Spring Boot, Spring Security JWT w/ Refresh Token
* PostgreSQL
* [Clean Blog (Bootstrap Template)](https://startbootstrap.com/theme/clean-blog)
## Installation
Generate a Encryption Key =>
[Link](https://www.allkeysgenerator.com/Random/Security-Encryption-Key-Generator.aspx)
```bash
Insert your encryption key into docker-compose.yml file
...
environment:
...
JWT_SECRET_KEY:
...
...
```
Clone the project
```bash
git clone https://github.com/anilozmen/spring-boot-vue-security-jwt-auth
```
Go to the project directory
```bash
cd spring-boot-vue-security-jwt-auth
```
Run with docker-compose
```bash
docker-compose up -d
```