[go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-11 Thread tapi...@gmail.com
I don't know if it satisfies your need, but you can try Golds: https://go101.org/apps-and-libs/golds.html On Sunday, September 11, 2022 at 5:28:35 AM UTC+8 brainman wrote: > Hello Everyone, > > I would like to run go documentation server that have access to my private > code. > > Is it

[go-nuts] App Engine hasn't upgraded beyond Go 1.16, which is now out of security window

2022-09-11 Thread Sean Abraham
I'm hoping a member of the Go team will take pity on me and prod the App Engine Go team about this. The most recent upgrade to AE's Go environment was in Nov 2021, when they started supporting Go 1.16 (see release notes below). Now that Go 1.19 is out, Go 1.16 won't be getting security fixes

[go-nuts] Is golang/mobile still active?

2022-09-11 Thread sytuv ccoxf
Is golang/mobile still active? It seems like does not committed since Jul 23 2022. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-11 Thread Rob Pike
Yes, godoc. I need more sleep. -rob On Sun, Sep 11, 2022 at 6:39 PM Jan Mercl <0xj...@gmail.com> wrote: > > On Sun, Sep 11, 2022 at 4:20 AM Rob Pike wrote: > > > It would be nice if gofmt still had its -http option. You could run an > > old version. > > AFAICT, the option is still there. We're

Re: [go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-11 Thread Jan Mercl
On Sun, Sep 11, 2022 at 4:20 AM Rob Pike wrote: > It would be nice if gofmt still had its -http option. You could run an > old version. AFAICT, the option is still there. We're using it at work, installed on our gitlab server. me@3900x:~$ go install -v

Re: [go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-11 Thread brainman
Thanks for your suggestion, Rob. I just use go doc command. The website is for my colleagues. Alex On Sunday, 11 September 2022 at 12:20:37 UTC+10 Rob 'Commander' Pike wrote: > It would be nice if gofmt still had its -http option. You could run an > old version. > > -rob > > > On Sun, Sep 11,

[go-nuts] Re: private go documentation server similar to https://pkg.go.dev

2022-09-11 Thread brainman
Thanks for the link, peterGo. Looks complicated to configure and run. I will try to run it when I have time. Alex On Sunday, 11 September 2022 at 08:01:03 UTC+10 peterGo wrote: > https://go.googlesource.com/pkgsite/ > > On Saturday, September 10, 2022 at 5:28:35 PM UTC-4 brainman wrote: > >>