Compare commits
2 Commits
c6d9b0994d
...
705140629b
| Author | SHA1 | Date | |
|---|---|---|---|
| 705140629b | |||
| 5ad6acbd00 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,6 +6,7 @@ build/
|
|||||||
!gradle/wrapper/gradle-wrapper.jar
|
!gradle/wrapper/gradle-wrapper.jar
|
||||||
!**/src/main/**/build/
|
!**/src/main/**/build/
|
||||||
!**/src/test/**/build/
|
!**/src/test/**/build/
|
||||||
|
CFTunnels/
|
||||||
|
|
||||||
### STS ###
|
### STS ###
|
||||||
.apt_generated
|
.apt_generated
|
||||||
|
|||||||
@ -2,13 +2,12 @@ package com.hithomelabs.CFTunnels;
|
|||||||
|
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Main Spring Boot application class for Cloudflare Tunnels API.
|
* Main Spring Boot application class for Cloudflare Tunnels API.
|
||||||
*
|
*
|
||||||
* <p>This application provides a RESTful API for managing Cloudflare Tunnels,
|
* <p>This application provides a RESTful API for managing Cloudflare Tunnels,
|
||||||
* allowing users to create tunnel mappings to services with an approval workflow.</p>
|
* allowing users to create tunnel mappings to services with an approval workflow.</p>
|
||||||
*
|
*
|
||||||
* <p><b>Features:</b></p>
|
* <p><b>Features:</b></p>
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>Create, update, and delete Cloudflare tunnels</li>
|
* <li>Create, update, and delete Cloudflare tunnels</li>
|
||||||
@ -16,7 +15,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|||||||
* <li>Request/approval workflow for mapping changes</li>
|
* <li>Request/approval workflow for mapping changes</li>
|
||||||
* <li>OIDC-based authentication with role-based access</li>
|
* <li>OIDC-based authentication with role-based access</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* <p><b>Technology Stack:</b></p>
|
* <p><b>Technology Stack:</b></p>
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>Java 17</li>
|
* <li>Java 17</li>
|
||||||
@ -26,10 +25,10 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|||||||
* <li>H2 Database (configurable for PostgreSQL)</li>
|
* <li>H2 Database (configurable for PostgreSQL)</li>
|
||||||
* <li>Cloudflare API</li>
|
* <li>Cloudflare API</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* <p>Access the API documentation at:
|
* <p>Access the API documentation at:
|
||||||
* {@code /swagger-ui.html} for the Swagger/OpenAPI UI</p>
|
* {@code /swagger-ui.html} for the Swagger/OpenAPI UI</p>
|
||||||
*
|
*
|
||||||
* @see <a href="https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-negative">Cloudflare Tunnel Documentation</a>
|
* @see <a href="https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-negative">Cloudflare Tunnel Documentation</a>
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
@ -45,4 +44,4 @@ public class CfTunnelsApplication {
|
|||||||
SpringApplication.run(CfTunnelsApplication.class, args);
|
SpringApplication.run(CfTunnelsApplication.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user