←back to thread

408 points ksec | 1 comments | | HN request time: 0.248s | source
Show context
monax ◴[] No.45229746[source]
Didn’t expect to see my project on the main page today ‘^^ Right now the build is broken, so you can’t test the full OS, but you can run individual apps with:

```bash ./skift.sh run --release <app-name> ```

on Linux or macOS.

To see all available apps:

```bash ls ./src/apps ```

replies(6): >>45229766 #>>45229782 #>>45230072 #>>45231061 #>>45231293 #>>45232427 #
1. monax ◴[] No.45229766[source]
This works for everything except the browser. For that, use:

```bash ./skift.sh run --release vaev-browser -- <url-or-file> ```

The HTTP stack is super barebones, so it only supports `http://` (no HTTPS). It works with my site, but results may vary elsewhere.

Most of my time so far has gone into the styling and layout engine rather than networking.