-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
182 lines (153 loc) · 4.18 KB
/
index.html
File metadata and controls
182 lines (153 loc) · 4.18 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Zwik - A one-click Development Environment solution</title>
<style>
body, html {
font-family: sans-serif;
margin: 0;
height: 100%;
}
body {
display: flex;
flex-direction: column;
}
#container {
margin-top: 2em;
align-items: center;
flex: 1 0 auto;
}
.wrapper {
padding: 2rem;
border-radius: 15px;
}
code {
font-family: monospace;
font-size: 1.15em;
background-color: #afb8c133;
border-radius: 6px;
}
.textbox {
padding: 8px 6px;
height: 2.57em;
box-sizing: border-box;
border-color: var(--border-neutral, #3090b0);
border-width: 1.5px;
border-style: solid;
border: 1px
background-color: transparent;
border-radius: 3px;
font-size: 14px;
width: 45ch;
max-width: 100%;
font-family: sans-serif;
}
.button {
color: #e8e6e6;
padding: 11px 16px;
margin-top: 5px;
font-size: 12px;
cursor: pointer;
border-radius: 2px;
border: none;
background-color: #3090b0;
}
.button.delete {
background-color: #8b0000;
}
.button:hover {
color: #fffcfc;
filter: saturate(150%);
}
#menubar {
padding: 1em 1em;
background-color: #3090b0;
color: #fffcfc;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 10;
font-weight: bold;
}
#menubar a {
color: #fffcfc;
}
#footer {
margin: 0;
padding: 1em 1em;
background-color: #3090b0;
color: #fffcfc;
flex-shrink: 0;
}
.comparison {
border: 1px solid #000;
border-collapse: collapse;
}
.comparison thead {
background-color: #afb8c133;
}
.comparison th, .comparison td {
border: 1px solid #000;
padding: 0.2em 1em;
}
.comparison td {
text-align: center;
}
.comparison th,
.comparison td.feature,
.comparison td.section {
text-align: left;
}
.comparison td.section {
font-weight: bold;
}
.token-table {
width: 80%;
border-collapse: collapse;
margin: 1em 0;
}
.token-table th,
.token-table td {
border: 1px solid black;
padding: 10px;
text-align: left;
}
.token-table th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<nav id="menubar">
<a href="/">Home</a>
</nav>
<div id="container">
<div class="wrapper">
<h1>Your one-click Development Environment solution</h1>
<h2>About Zwik</h2>
<p>Zwik is a powerful solution for creating development environments. It ensures consistency by using the same tools and versions across projects. Zwik supports Windows, Linux, and MacOS, and requires no pre-installed dependencies.</p>
<h2>Cool! How to get started?</h2>
<ol>
<li>Download the bootstrap script for <a href="/zwik_environment.sh" target="_blank">Linux/Mac</a> or <a href="/zwik_environment.bat" target="_blank">Windows</a>.</li>
<li>Save the script to the root of your project folder.</li>
<li>Run the script, the first time it can take some time to create an initial environment.</li>
<li>The file <code>.zwik/zwik_environment.yaml</code> is created and can be adapted to add the packages you need.</li>
</ol>
<h2>Available Tools</h2>
<p>By default Zwik searches on <a href="https://conda-forge.org/">conda-forge</a> for packages.</p>
<h2>How does it work?</h2>
<p>Zwik is based on the <a href="https://mamba.readthedocs.io/en/latest/" target="_blank">Mamba</a> open source package manager.</p>
<h2>Contribute to Zwik</h2>
<p>If a specific package is missing, make it available on conda-forge and it will also automatically be available for Zwik.</p>
<p>To contribute to the Zwik client itself, check the <a href="https://github.com/zwikdev/zwik-client.git">client repository</a>.</p>
</div>
</div>
<div id="footer">
<div class="inner">
zwik-web | <!-- GIT_SHA -->
</div>
</div>
</body>
</html>