Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 941 Bytes

README.md

File metadata and controls

27 lines (25 loc) · 941 Bytes

Video Hosting Demo

Video hosting demo using Spring Boot and WebFlux
Demo is working but it's still in progress
Inspired by this post: https://melgenek.github.io/spring-video-service

Installation

  1. Clone repository
  2. Create folder where application will store video files and make it accessible
  3. Create property file from sample:
cp ./src/main/resources/application.properties.sample ./src/main/resources/application.properties
  1. Edit created property file: change video folder path to the one you created before
spring.servlet.multipart.enabled=true
spring.servlet.multipart.file-size-threshold=2KB
spring.servlet.multipart.max-file-size=2000MB
spring.servlet.multipart.max-request-size=2150MB
video.location=/home/admin/videos
  1. Run project:
mvn spring-boot:run
  1. Go to localhost:8080 in browser to see home page of application

Oops!