add to git

This commit is contained in:
David Meincke
2022-03-21 17:43:17 +01:00
commit bb44e0e92d
33 changed files with 23209 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<!--web.config url rewrite-->
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect to https" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
</rule>
<rule name="Redirect To Index" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/index.html" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
+19
View File
@@ -0,0 +1,19 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" id="master-viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Title">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>code editor</title>
<link rel="manifest" href="manifest.json?v=1">
<base href="/" />
</head>
<body>
<script type="text/javascript" src="/main.bundle.js?v=1"></script>
</body>
</html>
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

+16
View File
@@ -0,0 +1,16 @@
{
"short_name": "ShortName",
"name": "AppName",
"icons": [
{
"src": "logo.png",
"type": "image/png",
"sizes": "192x192"
}
],
"display": "fullscreen",
"orientation": "portrait",
"background_color": "#252831",
"theme_color": "#0094ff",
"start_url": "/?webapp=true"
}