Skip to content

Commit cc61996

Browse files
committed
all: add favicon
1 parent 0e1ab92 commit cc61996

File tree

5 files changed

+4
-2
lines changed

5 files changed

+4
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ BUILD=ssaplayground.out
22
all:
33
go build -o $(BUILD) -mod vendor
44
start:
5-
./ssaplayground -conf config.yaml
5+
./$(BUILD) -conf config.yaml
66
docker:
77
echo "NOT IMPLEMENTED"
88
clean:

TODO.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- [x] Test package support
44
- [x] Auto format && import
5+
- [ ] Message: waiting for SSA response
56
- [ ] Better Editor: Monaco Editor
67
- [ ] Dragable SSA
78
- [ ] Compiler flags, e.g. disable

public/favicon.png

711 Bytes
Loading

public/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<title>The Go SSA Playground</title>
77
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
88
<script src="/gossa/linedtext.js"></script>
9+
<link rel="icon" href="/gossa/favicon.png">
910
<link rel="stylesheet" href="/gossa/style.css">
1011
<link rel="stylesheet" href="/gossa/scrollbar.css">
1112
</head>

src/boot/boot.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func Run() {
4040
terminated <- true
4141
}()
4242

43-
logrus.Infof("gossaweb: welcome to gossaweb service... http://%s", config.Get().Addr)
43+
logrus.Infof("gossaweb: welcome to gossaweb service... http://%s/gossa", config.Get().Addr)
4444
err := server.ListenAndServe()
4545
if err != http.ErrServerClosed {
4646
logrus.Info("gossaweb: launch with error: ", err)

0 commit comments

Comments
 (0)