feat: add initial HTML example and README documentation

This commit is contained in:
Mauricio Siu
2025-04-06 03:49:56 -06:00
parent e86808420c
commit a0636d8083
2 changed files with 29 additions and 0 deletions

22
html/README.md Normal file
View File

@@ -0,0 +1,22 @@
# HTML Example
This repository contains an example of HTML application that is deployed on Dokploy.
1. **Use Git Provider in Your Application**:
- Repository: `https://github.com/Dokploy/examples.git`
- Branch: `main`
- Build path: `/html`
- `Static` Build Type
3. **Click on Deploy**:
- Deploy your application by clicking the deploy button.
4. **Generate a Domain**:
- Click on generate domain button.
- A new domain will be generated for you.
- Set Port `80`
- You can use this domain to access your application.
If you need further assistance, join our [Discord server](https://discord.com/invite/2tBnJ3jDJc).

7
html/index.html Normal file
View File

@@ -0,0 +1,7 @@
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello World</h1>
</body>