You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<title>Zwik - A one-click Development Environment solution</title>
7
+
<style>
8
+
body,html {
9
+
font-family: sans-serif;
10
+
margin:0;
11
+
height:100%;
12
+
}
13
+
14
+
body {
15
+
display: flex;
16
+
flex-direction: column;
17
+
}
18
+
19
+
#container {
20
+
margin-top:2em;
21
+
align-items: center;
22
+
flex:10 auto;
23
+
}
24
+
25
+
.wrapper {
26
+
padding:2rem;
27
+
border-radius:15px;
28
+
}
29
+
30
+
code {
31
+
font-family: monospace;
32
+
font-size:1.15em;
33
+
background-color:#afb8c133;
34
+
border-radius:6px;
35
+
}
36
+
37
+
.textbox {
38
+
padding:8px6px;
39
+
height:2.57em;
40
+
box-sizing: border-box;
41
+
border-color:var(--border-neutral,#3090b0);
42
+
border-width:1.5px;
43
+
border-style: solid;
44
+
border:1px
45
+
background-color: transparent;
46
+
border-radius:3px;
47
+
font-size:14px;
48
+
width:45ch;
49
+
max-width:100%;
50
+
font-family: sans-serif;
51
+
}
52
+
53
+
.button {
54
+
color:#e8e6e6;
55
+
padding:11px16px;
56
+
margin-top:5px;
57
+
font-size:12px;
58
+
cursor: pointer;
59
+
border-radius:2px;
60
+
border: none;
61
+
background-color:#3090b0;
62
+
}
63
+
64
+
.button.delete {
65
+
background-color:#8b0000;
66
+
}
67
+
68
+
.button:hover {
69
+
color:#fffcfc;
70
+
filter:saturate(150%);
71
+
}
72
+
73
+
#menubar {
74
+
padding:1em1em;
75
+
background-color:#3090b0;
76
+
color:#fffcfc;
77
+
position: fixed;
78
+
top:0;
79
+
left:0;
80
+
right:0;
81
+
z-index:10;
82
+
font-weight: bold;
83
+
}
84
+
85
+
#menubara {
86
+
color:#fffcfc;
87
+
}
88
+
89
+
#footer {
90
+
margin:0;
91
+
padding:1em1em;
92
+
background-color:#3090b0;
93
+
color:#fffcfc;
94
+
flex-shrink:0;
95
+
}
96
+
97
+
.comparison {
98
+
border:1px solid #000;
99
+
border-collapse: collapse;
100
+
}
101
+
.comparisonthead {
102
+
background-color:#afb8c133;
103
+
}
104
+
.comparisonth, .comparisontd {
105
+
border:1px solid #000;
106
+
padding:0.2em1em;
107
+
}
108
+
.comparisontd {
109
+
text-align: center;
110
+
}
111
+
112
+
.comparisonth,
113
+
.comparisontd.feature,
114
+
.comparisontd.section {
115
+
text-align: left;
116
+
}
117
+
118
+
.comparisontd.section {
119
+
font-weight: bold;
120
+
}
121
+
122
+
.token-table {
123
+
width:80%;
124
+
border-collapse: collapse;
125
+
margin:1em0;
126
+
}
127
+
128
+
.token-tableth,
129
+
.token-tabletd {
130
+
border:1px solid black;
131
+
padding:10px;
132
+
text-align: left;
133
+
}
134
+
135
+
.token-tableth {
136
+
background-color:#f2f2f2;
137
+
}
138
+
</style>
139
+
140
+
</head>
141
+
<body>
142
+
<navid="menubar">
143
+
<ahref="/">Home</a>
144
+
</nav>
145
+
<divid="container">
146
+
<divclass="wrapper">
147
+
148
+
<h1>Your one-click Development Environment solution</h1>
149
+
150
+
<h2>About Zwik</h2>
151
+
<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>
152
+
153
+
<h2>Cool! How to get started?</h2>
154
+
<ol>
155
+
<li>Download the bootstrap script for <ahref="/zwik_environment.sh" target="_blank">Linux/Mac</a> or <ahref="/zwik_environment.bat" target="_blank">Windows</a>.</li>
156
+
<li>Save the script to the root of your project folder.</li>
157
+
<li>Run the script, the first time it can take some time to create an initial environment.</li>
158
+
<li>The file <code>.zwik/zwik_environment.yaml</code> is created and can be adapted to add the packages you need.</li>
159
+
</ol>
160
+
161
+
<h2>Available Tools</h2>
162
+
<p>By default Zwik searches on <ahref="https://conda-forge.org/">conda-forge</a> for packages.</p>
163
+
164
+
<h2>How does it work?</h2>
165
+
<p>Zwik is based on the <ahref="https://mamba.readthedocs.io/en/latest/" target="_blank">Mamba</a> open source package manager.</p>
166
+
167
+
<h2>Contribute to Zwik</h2>
168
+
169
+
<p>If a specific package is missing, make it available on conda-forge and it will also automatically be available for Zwik.</p>
170
+
171
+
<p>To contribute to the Zwik client itself, check the <ahref="https://github.com/zwikdev/zwik-client.git">client repository</a>.</p>
0 commit comments