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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="data:,"/>
<meta content="pik - file-based task runner" property="og:title"/>
<meta content="https://mepik.dev" property="og:url"/>
<meta content="file-based task runner" property="og:description"/>
<meta content="#f2cae2" data-react-helmet="true" name="theme-color"/>
<link type="text/css" rel="stylesheet" href="https://ewy.one/terminal.css"/>
<title>pik - file based task runner</title>
<style>
pre {
border: solid black 4px;
font-family: "Symbols Nerd Font Mono", monospace;
padding: 4px;
user-select: none;
background-color: var(--black);
line-height: 1.1em;
font-size: 12px;
& .sel {
background-color: rgba(11, 141, 0, 0.41);
}
& .src {
background-color: #be40e3;
}
& .cat {
background-color: var(--white);
color: var(--black);
}
& span {
}
& .faint {
opacity: 0.5;
}
}
img {
box-sizing: border-box;
max-width: 100%;
border: solid 2px black;
}
.warranty {
padding-top: 256px;
text-align: justify;
}
.important {
text-align: center;
}
.links {
font-size: 2em;
}
code {
background-color: var(--black);
width: 100%;
display: block;
padding: 8px 0;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1><a href="/" class="fakelink">pik</a></h1>
<span>file-based task runner</span>
</header>
<main>
<section aria-hidden="true">
<pre>
<span class="src">▌ pik ~/Projects/pik</span>
<span class="sel">▌ ⏵ build.sh <span class="faint">build pik</span></span>
▌ coverage.sh <span class="faint">coverage report</span>
▌ install.sh <span class="faint">install pik to ~/.local/bin</span>
▌ integrations.sh
▌ man.sh
▌ script.override.sh <span class="faint">example script</span>
▌ script.sh <span class="faint">example script</span>
▌ test.sh
▌ thing.py
▌ unittest.sh
<span class="cat">▌ web</span>
▌ web deploy.sh <span class="faint">gets run on server</span>
▌ web update.sh <span class="faint">update files on website</span>
▌ master +6 ~1
<span class="src">▌ ewout ~/</span>
▌ time.sh <span class="faint">show the current time</span>
<span class="faint"> use --edit to open a target in your $EDITOR</span></pre>
</section>
<section class="important">
<p>
targets are files
</p>
<p>
integrates with other task runners and build systems
</p>
<p>
tui and cli as first class citizens
</p>
<p>
persistent memory allows calling from anywhere
</p>
</section>
<section>
<code>
go install git.sr.ht/~ewy/pik@latest
</code>
</section>
<section class="important links">
<ul>
<li>
<a href="https://git.ewy.one/">Repository</a>
</li>
<li>
<a href="https://git.sr.ht/~ewy/pik">Sourcehut mirror</a>
</li>
<li>
<a href="https://mepik.dev/coverage.html">Test coverage</a>
</li>
</ul>
</section>
</main>
<footer>
<section>
proudly powered by <a href="https://ewy.one">ewy</a>
</section>
<section class="warranty">
THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED
IN
WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE “AS IS” WITHOUT WARRANTY OF ANY KIND,
EITHER
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH THE CUSTOMER.
SHOULD
THE SOFTWARE PROVE DEFECTIVE, THE CUSTOMER ASSUMES THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.
</section>
</footer>
</body>
</html>
|