port number is now an argument
Some checks failed
Build bang-server / Explore-Gitea-Actions (push) Failing after 3s
Some checks failed
Build bang-server / Explore-Gitea-Actions (push) Failing after 3s
implemented actions for auto-building!
This commit is contained in:
24
.gitea/workflows/build.yaml
Normal file
24
.gitea/workflows/build.yaml
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
name: Build bang-server
|
||||||
|
run-name: ${{ gitea.actor }} is building bang-server
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Explore-Gitea-Actions:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||||
|
- run: echo "This job is now running on a ${{ runner.os }} server"
|
||||||
|
- run: echo "Branch is ${{ gitea.ref }} and repository is ${{ gitea.repository }}."
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- run: echo "${{ gitea.repository }} repository has been cloned to the runner."
|
||||||
|
- run: echo "The workflow is now ready to test your code on the runner."
|
||||||
|
- name: Setup Go
|
||||||
|
uses: actions/setup-go@v3
|
||||||
|
with:
|
||||||
|
go-version: '1.24.4'
|
||||||
|
- name: Build the server app
|
||||||
|
run: go build bang.go
|
||||||
|
- name: List files
|
||||||
|
run: ls -lh
|
||||||
|
- run: echo "This job's status is ${{ job.status }}."
|
||||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,2 +1,4 @@
|
|||||||
/mailboxes/
|
/mailboxes/
|
||||||
users.json
|
users.json
|
||||||
|
bang.exe
|
||||||
|
testclient.py
|
||||||
8
bang.go
8
bang.go
@@ -5,6 +5,7 @@ import (
|
|||||||
"crypto/sha256"
|
"crypto/sha256"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
@@ -329,10 +330,13 @@ func withCORS(handler http.HandlerFunc) http.HandlerFunc {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
port := flag.Int("port", 8080, "port to listen on")
|
||||||
|
flag.Parse()
|
||||||
|
|
||||||
http.HandleFunc("/users", withCORS(createUserHandler))
|
http.HandleFunc("/users", withCORS(createUserHandler))
|
||||||
http.HandleFunc("/email", withCORS(receiveEmailHandler))
|
http.HandleFunc("/email", withCORS(receiveEmailHandler))
|
||||||
http.HandleFunc("/mailbox", withCORS(listMailboxHandler))
|
http.HandleFunc("/mailbox", withCORS(listMailboxHandler))
|
||||||
http.HandleFunc("/mailbox/open", withCORS(markEmailOpenedHandler))
|
http.HandleFunc("/mailbox/open", withCORS(markEmailOpenedHandler))
|
||||||
log.Println("Email server running on :80")
|
log.Printf("Email server running on :%d", *port)
|
||||||
log.Fatal(http.ListenAndServe(":80", nil))
|
log.Fatal(http.ListenAndServe(fmt.Sprintf(":%d", *port), nil))
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user