1
|
1 <!doctype html>
|
|
2 <html lang="en">
|
|
3 <head>
|
|
4 <script src="/site.js"></script>
|
|
5 <script> head() </script>
|
|
6 <title>Arkian - This Website</title>
|
|
7 </head>
|
|
8 <body>
|
|
9 <script> header() </script>
|
|
10 <div content>
|
|
11 <h1>This Website</h1>
|
|
12
|
24
|
13 <p>This website is available at <a href="https://www.arkian.net/">www.arkian.net</a> and at <a href="https://arkian.netlify.app/">arkian.netlify.app</a>. The <code>www.arkian.net</code> site is hosted on my Luan server. The <code>arkian.netlify.app</code> is hosted on <a href="https://www.netlify.com/">Netlify</a> and isn't dependent on my technology at all.</p>
|
|
14
|
12
|
15 <p>Here is <a href="https://hg.reactionary.software/repo/arkian/">the source</a> of this website. To get it, first install <a href="https://www.mercurial-scm.org/">Mercurial</a>. Then on the command line, do:</p>
|
1
|
16
|
|
17 <code block>
|
|
18 hg clone https://hg.reactionary.software/repo/arkian
|
|
19 </code>
|
|
20
|
|
21 <p>To updated the source, go into the <code>arkian</code> directory and do:</p>
|
|
22
|
|
23 <code block>
|
|
24 hg pull -u
|
|
25 </code>
|
|
26
|
|
27 <p>To run the website locally, first install Python. Then in the directory <code>arkian/src</code>, for Python 2 do:</p>
|
|
28
|
|
29 <code block>
|
|
30 python -m SimpleHTTPServer
|
|
31 </code>
|
|
32
|
|
33 <p>For Python 3 do:</p>
|
|
34
|
|
35 <code block>
|
|
36 python3 -m http.server
|
|
37 </code>
|
|
38
|
|
39 <p>Then in your browser, go to <a href="http://localhost:8000/">http://localhost:8000/</a>.</p>
|
|
40
|
|
41 <p>Alternatively, you could install <a href="https://www.luan.software/">Luan</a> and then from directory <code>arkian</code> do:</p>
|
|
42
|
|
43 <code block>
|
|
44 ./serve.sh
|
|
45 </code>
|
|
46
|
|
47 <p>Then in your browser, go to <a href="http://localhost:8080/">http://localhost:8080/</a>.</p>
|
|
48
|
12
|
49 <p>There is also <a href="https://hg.reactionary.software/repo/arkian_private/">a private website</a> containing private info that you need. Ask another Arkian to give you access to it. All of the above applies to the private website as well.</p>
|
|
50
|
|
51 <p>These websites may be updated as needed, particularly to fix broken links.</p>
|
1
|
52 </div>
|
|
53 </body>
|
|
54 </html>
|