File tree Expand file tree Collapse file tree 5 files changed +4
-2
lines changed Expand file tree Collapse file tree 5 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ BUILD=ssaplayground.out
2
2
all :
3
3
go build -o $(BUILD ) -mod vendor
4
4
start :
5
- ./ssaplayground -conf config.yaml
5
+ ./$( BUILD ) -conf config.yaml
6
6
docker :
7
7
echo " NOT IMPLEMENTED"
8
8
clean :
Original file line number Diff line number Diff line change 2
2
3
3
- [x] Test package support
4
4
- [x] Auto format && import
5
+ - [ ] Message: waiting for SSA response
5
6
- [ ] Better Editor: Monaco Editor
6
7
- [ ] Dragable SSA
7
8
- [ ] Compiler flags, e.g. disable
Original file line number Diff line number Diff line change 6
6
< title > The Go SSA Playground</ title >
7
7
< script src ="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js "> </ script >
8
8
< script src ="/gossa/linedtext.js "> </ script >
9
+ < link rel ="icon " href ="/gossa/favicon.png ">
9
10
< link rel ="stylesheet " href ="/gossa/style.css ">
10
11
< link rel ="stylesheet " href ="/gossa/scrollbar.css ">
11
12
</ head >
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ func Run() {
40
40
terminated <- true
41
41
}()
42
42
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 )
44
44
err := server .ListenAndServe ()
45
45
if err != http .ErrServerClosed {
46
46
logrus .Info ("gossaweb: launch with error: " , err )
You can’t perform that action at this time.
0 commit comments