An open API service indexing awesome lists of open source software.

https://github.com/daggerok/webflux-static-content

This repository contains serving static web content with webflux
https://github.com/daggerok/webflux-static-content

spring-boot-webflux spring-webflux static-content web webflux

Last synced: 3 months ago
JSON representation

This repository contains serving static web content with webflux

Awesome Lists containing this project

README

        

= webflux-static-content image:https://travis-ci.org/daggerok/webflux-static-content.svg?branch=master["Build Status", link="https://travis-ci.org/daggerok/webflux-static-content"]

//tag::content[]

.docker
[source,bash]
----
docker-compose down -v; ./gradlew clean build; docker-compose up --build --force-recreate --remove-orphans

# or
bash ./gradlew clean build;
docker-compose up --build --force-recreate --remove-orphans

http :8001
http :8001/api/v1
http :8001/style.css
http :8001/404

docker-compose down -v
----

.test
[source,bash]
----
bash gradlew bootRun --parallel
http :8001
http :8001/api/v1
http :8001/style.css
http :8001/404
----

//end::content[]