-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
50 lines (37 loc) · 2.16 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>About DroneForPHP</title>
<meta name="Description" content="About droneforphp.com">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/default.css">
<link rel="apple-touch-icon" sizes="180x180" href="./images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
</head>
<body>
<div id="header"></div>
<div class="container">
<h2>About DroneForPHP</h2>
<p>DroneForPHP is a tool to generate configuration files for <a href="https://drone.io/">drone.io</a>, a continuous integration tool for PHP that uses Docker to run third-party software for code testing.</p>
<p>This site curates a list of that software that the author finds useful in his projects, and incorporates a tool to generate a drone configuration file (known as a .drone.yml file) to use that software.</p>
<p>For installation instructions for drone.io, see the official drone.io guide, <a href="https://docs.drone.io/">here</a>.</p>
<p>There are plenty of other code quality tools available, which may be more appropriate for your requirements. However, this tool is based on the PHP tools I find helpful and use.</p>
<h3>Customising the tool</h3>
<p>The whole of DroneForPHP is <a href="https://github.com/yourpropertyexpert/DroneForPHP">hosted on github</a> under MIT licence.
</div>
<footer class="page-footer">
<hr/>
<div id="footer" class="container"/>
</footer>
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="./scripts/nav/footer.js"></script>
<script src="./scripts/nav/header.js"></script>
<script>ShowFooters();</script>
<script>ShowHeader();</script>
</body>
</html>