sangupta / shire

Blog aware static site generator similar to Jekyll
http://sangupta.com/projects/shire
MIT License
2 stars 1 forks source link

is this project finished? #1

Open luckypoem opened 7 years ago

luckypoem commented 7 years ago

2 years has passed.

thank you.

sangupta commented 7 years ago

Yes and No. I use it for my internal generation and it works. As no one ever experienced interest I left it at that.

If you are interested I can work this up - with you letting me know whats needed and missing.

luckypoem commented 7 years ago

hi.

i see here: https://github.com/sangupta/shire/downloads ,it's empty. can u upload the binary file to github.com?

sangupta commented 2 years ago

Hi @luckypoem - my apologies for extreme delay in response. I should have marked the repository archived as I was not looking at it. However, I just revived the project and am rewriting it in Go-lang now for more speed and no-dependency binaries.

I will mark the issue closed as soon as I release the first release of new version.

luckypoem commented 2 years ago

HI.

IN MY VPS, I RAN: go install github.com/sangupta/shire@latest it shows:

go: downloading github.com/sangupta/shire v0.0.0-20220802213204-30af7281f135 go: downloading github.com/deckarep/golang-set/v2 v2.1.0 go: downloading github.com/sangupta/lhtml v0.2.1 go: downloading golang.org/x/net v0.0.0-20220708220712-1185a9018129 root@racknerd-7b97d8:~# which shire /root/go1.18.1.linux-amd64/go/gopath/bin/shire root@racknerd-7b97d8:~# shire -h INFO: Reading config file: /Users/sangupta/git/sangupta/shire/test-site/shire.config.json panic: open /Users/sangupta/git/sangupta/shire/test-site/shire.config.json: no such file or directory

goroutine 1 [running]: github.com/sangupta/shire/site.ReadConfig(0xc000092ed0) /root/go1.18.1.linux-amd64/go/gopath/pkg/mod/github.com/sangupta/shire@v0.0.0-20220802213204-30af7281f135/site/config.go:88 +0x194 main.runShire() /root/go1.18.1.linux-amd64/go/gopath/pkg/mod/github.com/sangupta/shire@v0.0.0-20220802213204-30af7281f135/shire.go:48 +0x73 main.main() /root/go1.18.1.linux-amd64/go/gopath/pkg/mod/github.com/sangupta/shire@v0.0.0-20220802213204-30af7281f135/shire.go:32 +0x31 root@racknerd-7b97d8:~# shire --help INFO: Reading config file: /Users/sangupta/git/sangupta/shire/test-site/shire.config.json panic: open /Users/sangupta/git/sangupta/shire/test-site/shire.config.json: no such file or directory

goroutine 1 [running]: github.com/sangupta/shire/site.ReadConfig(0xc000068ed0) /root/go1.18.1.linux-amd64/go/gopath/pkg/mod/github.com/sangupta/shire@v0.0.0-20220802213204-30af7281f135/site/config.go:88 +0x194 main.runShire() /root/go1.18.1.linux-amd64/go/gopath/pkg/mod/github.com/sangupta/shire@v0.0.0-20220802213204-30af7281f135/shire.go:48 +0x73 main.main() /root/go1.18.1.linux-amd64/go/gopath/pkg/mod/github.com/sangupta/shire@v0.0.0-20220802213204-30af7281f135/shire.go:32 +0x31 root@racknerd-7b97d8:~#

where is shire.config.json file?

sangupta commented 2 years ago

@luckypoem I am currently coding for this project, it is not yet complete. As you see above, the path is encoded to my local machine where shire.config.json file exists. I request you to hold off till Nov-end by when I am expecting to release the first binary.

Project shire required me to write a HTML templating engine for Go-lang which is currently in works at https://github.com/sangupta/lhtml.

May I know what features are you specifically looking for, so that I try prioritize them?

luckypoem commented 2 years ago

hi。 i want pagination feature. tks.

sangupta commented 2 years ago

@luckypoem Sure. I plan to have support for pagination, cards as well as endless scroll. In terms of templating, will you prefer HTML/Liquid/Velocity or something else. I am targeting HTML for first iteration as it feels natural to write UI in it.

luckypoem commented 2 years ago

i prefer HTML templating. thanks