Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial backend web framework including REST serving, OpenAPI V3 generated model, ORM, DTOs, Security, CORS, Angular/React FE #1

Open
obriensystems opened this issue Jul 28, 2024 · 0 comments
Assignees

Comments

@obriensystems
Copy link
Member

obriensystems commented Jul 28, 2024

https://go.dev/dl/
https://go.dev/doc/tutorial/getting-started
https://pkg.go.dev/search?q=quote

(base) michaelobrien@mbp6 biometric-backend-go % go version
go version go1.22.5 darwin/arm64

(base) michaelobrien@mbp6 biometric-backend-go % mkdir src
(base) michaelobrien@mbp6 biometric-backend-go % cd src
(base) michaelobrien@mbp6 src % go mod init hello
go: creating new go.mod: module hello
(base) michaelobrien@mbp6 src % ls
go.mod

(base) michaelobrien@mbp6 src % cat go.mod 
module hello

go 1.22.5
(base) michaelobrien@mbp6 src % vi hello.go
(base) michaelobrien@mbp6 src % cat hello.go 
package main

import "fmt"

func main() {
    fmt.Println("Hello, World!")
}

(base) michaelobrien@mbp6 src % go run .
Hello, World!
(base) michaelobrien@mbp6 src % ls
go.mod		hello.go

(base) michaelobrien@mbp6 src % vi hello.go 
(base) michaelobrien@mbp6 src % cat hello.go 
package main

import "fmt"
import "rsc.io/quote"

func main() {
    fmt.Println("Hello, World!")
    fmt.Println(quote.Go())
}


(base) michaelobrien@mbp6 src % go mod tidy
go: finding module for package rsc.io/quote
go: downloading rsc.io/quote v1.5.2
go: found rsc.io/quote in rsc.io/quote v1.5.2
go: downloading rsc.io/sampler v1.3.0
go: downloading golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c
(base) michaelobrien@mbp6 src % go run .
Hello, World!
Don't communicate by sharing memory, share memory by communicating.
@obriensystems obriensystems self-assigned this Jul 28, 2024
obriensystems added a commit that referenced this issue Jul 28, 2024
obriensystems added a commit that referenced this issue Jul 28, 2024
obriensystems added a commit that referenced this issue Jul 29, 2024
obriensystems added a commit that referenced this issue Jul 29, 2024
obriensystems added a commit that referenced this issue Jul 29, 2024
obriensystems added a commit that referenced this issue Jul 29, 2024
obriensystems added a commit that referenced this issue Nov 8, 2024
obriensystems added a commit that referenced this issue Nov 8, 2024
obriensystems added a commit that referenced this issue Nov 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant