1
0
mirror of https://shylinux.com/x/ContextOS synced 2025-04-25 08:48:06 +08:00
This commit is contained in:
IT 老营长 @云轩领航-创始人 2022-08-16 10:41:37 +08:00
parent 72cfae0429
commit a574a2c2ca
4 changed files with 66 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
src/node_modules/
src/binpack.go
src/version.go
etc/

View File

@ -21,13 +21,11 @@ sleep 1 && cd $CTX_ROOT && source etc/miss.sh
return
# shy
su - shy -c "cd /home/shy/contexts/ && ./bin/ice.bin forever serve &"
# /etc/rc.local
cd /home/shy/contexts/usr/local/daemon/10000 && ./sbin/nginx -p $PWD
# dev
su - harveyshao -c "cd /home/harveyshao/contexts/ && ./bin/ice.bin forever serve dev dev &"
cd /home/harveyshao/contexts/usr/local/daemon/10002 && ./sbin/nginx -p $PWD
su - shy -c "cd /home/shy/contexts/ && ./bin/ice.bin forever start &"
su - shy -c "cd /home/shy/contexts/usr/local/work/20220815-repos-server/ && ./bin/ice.bin forever start dev shy port 9030 nodename repos-server &"
# mac
cd /Users/harveyshao/contexts/ && ./bin/ice.bin forever serve dev shy &
cd /Users/harveyshao/contexts/ && ./bin/ice.bin forever start dev shy &

54
src/package-lock.json generated Normal file
View File

@ -0,0 +1,54 @@
{
"name": "page",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"dependencies": {
"xterm": "^4.19.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-web-links": "^0.6.0"
}
},
"node_modules/xterm": {
"version": "4.19.0",
"resolved": "https://registry.npmjs.org/xterm/-/xterm-4.19.0.tgz",
"integrity": "sha512-c3Cp4eOVsYY5Q839dR5IejghRPpxciGmLWWaP9g+ppfMeBChMeLa1DCA+pmX/jyDZ+zxFOmlJL/82qVdayVoGQ=="
},
"node_modules/xterm-addon-fit": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/xterm-addon-fit/-/xterm-addon-fit-0.5.0.tgz",
"integrity": "sha512-DsS9fqhXHacEmsPxBJZvfj2la30Iz9xk+UKjhQgnYNkrUIN5CYLbw7WEfz117c7+S86S/tpHPfvNxJsF5/G8wQ==",
"peerDependencies": {
"xterm": "^4.0.0"
}
},
"node_modules/xterm-addon-web-links": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/xterm-addon-web-links/-/xterm-addon-web-links-0.6.0.tgz",
"integrity": "sha512-H6XzjWWZu8FBo+fnYpxdPk9w5M6drbsvwPEJZGRS38MihiQaVFpKlCMKdfRgDbKGE530tw1yH54rhpZfHgt2/A==",
"peerDependencies": {
"xterm": "^4.0.0"
}
}
},
"dependencies": {
"xterm": {
"version": "4.19.0",
"resolved": "https://registry.npmjs.org/xterm/-/xterm-4.19.0.tgz",
"integrity": "sha512-c3Cp4eOVsYY5Q839dR5IejghRPpxciGmLWWaP9g+ppfMeBChMeLa1DCA+pmX/jyDZ+zxFOmlJL/82qVdayVoGQ=="
},
"xterm-addon-fit": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/xterm-addon-fit/-/xterm-addon-fit-0.5.0.tgz",
"integrity": "sha512-DsS9fqhXHacEmsPxBJZvfj2la30Iz9xk+UKjhQgnYNkrUIN5CYLbw7WEfz117c7+S86S/tpHPfvNxJsF5/G8wQ==",
"requires": {}
},
"xterm-addon-web-links": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/xterm-addon-web-links/-/xterm-addon-web-links-0.6.0.tgz",
"integrity": "sha512-H6XzjWWZu8FBo+fnYpxdPk9w5M6drbsvwPEJZGRS38MihiQaVFpKlCMKdfRgDbKGE530tw1yH54rhpZfHgt2/A==",
"requires": {}
}
}
}

7
src/package.json Normal file
View File

@ -0,0 +1,7 @@
{
"dependencies": {
"xterm": "^4.19.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-web-links": "^0.6.0"
}
}