ktye / i

interpret
100 stars 16 forks source link

Licence? #5

Closed pxeger closed 2 years ago

pxeger commented 2 years ago

This project doesn't have a licence. Can I install it on https://ato.pxeger.com, and allow users to run their own K code in a sandbox with it? If so, can I also publish an unmodified copy as a Docker image on https://hub.docker.com?

ktye commented 2 years ago

it's public domain as mentioned in the readme. you can run it everywhere.

I'm not sure how you want to install it. there are multiple possibilities:

just tell me, if you need help installing it.

pxeger commented 2 years ago

Oh, @ngn: https://ngn.bitbucket.io/k.html is incorrect then.

I think the go binary will be simplest, but we'll see.

Thanks!

ktye commented 2 years ago

@pxeger i added github actions for release building on ubuntu. This generates source files that are easier to compile, e.g.

go (single file, does not need go.mod):

wget https://github.com/ktye/i/releases/download/latest/kg.go
go build kg.go

c:

wget https://github.com/ktye/i/releases/download/latest/k.c
gcc k.c -lm