25 lines
744 B
Markdown
25 lines
744 B
Markdown
# Faux
|
|
|
|
This is a custom fantasy-console (like Pico 8) written in Deno/Typescript.
|
|
|
|
Go to the [Releases](https://git.playbox.link/dylan/fantasy-console/releases) page to find downloadable executables.
|
|
|
|
NOTE: If you are running Faux on Linux, you will need to have `xsel` installed.
|
|
|
|
## Developing
|
|
|
|
Faux is written in [TypeScript](https://www.typescriptlang.org/) to be run or compiled by [Deno](https://deno.com/runtime).
|
|
|
|
If you want to build from source, you should have Deno installed, clone this repo, and then...
|
|
|
|
To run:
|
|
```
|
|
deno task run
|
|
```
|
|
|
|
To compile:
|
|
```
|
|
deno task build_all
|
|
```
|
|
|
|
NOTE: Development is happening solely on Linux, so some build commands may fail if you are not on Linux or do not have some build dependencies installed. |