File tree 3 files changed +14
-0
lines changed
3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,8 @@ You can disable minification by setting `MINIFY=`.
74
74
- Used to configure [ nfpm] ( https://github.com/goreleaser/nfpm ) to generate .deb and .rpm
75
75
- [ ./build/code-server-nfpm.sh] ( ./build/code-server-nfpm.sh )
76
76
- Entrypoint script for code-server for .deb and .rpm
77
+ - [ ./build/code-server.service] ( ./build/code-server.service )
78
+ - systemd user service packaged into the debs and rpms
77
79
78
80
## release-container
79
81
Original file line number Diff line number Diff line change
1
+ [Unit]
2
+ Description =VS Code in the browser
3
+ After =network.target
4
+
5
+ [Service]
6
+ Type =exec
7
+ ExecStart =/usr/bin/code-server
8
+ Restart =always
9
+
10
+ [Install]
11
+ WantedBy =multi-user.target
Original file line number Diff line number Diff line change @@ -13,4 +13,5 @@ license: "MIT"
13
13
bindir : " /usr/bin"
14
14
files :
15
15
./ci/build/code-server-nfpm.sh : /usr/bin/code-server
16
+ ./ci/build/code-server.service : /usr/lib/systemd/user/code-server.service
16
17
./release-static/**/* : " /usr/lib/code-server/"
You can’t perform that action at this time.
0 commit comments