Synchronet v3.19b-Win32 (install) has been released (Jan-2022).

You can donate to the Synchronet project using PayPal.

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
howto:docker [2021/02/24 15:41] – [Installing Ubuntu Server] hubhowto:docker [2021/02/24 15:53] – [Remote Editing] hub
Line 34: Line 34:
 ===== Installing Docker ===== ===== Installing Docker =====
  
-I'm using the [[https://docs.docker.com/engine/install/ubuntu/|instructions from docker.com]] here for x86_64, you can use the instructions on that site for other platforms.+The instructions in this section are copied from docker.org for x86_64, for other platforms [[https://docs.docker.com/engine/install/ubuntu/|click here]].
  
 If using a VPS with root, you can omit the //sudo// portion of the commands below. If using a VPS with root, you can omit the //sudo// portion of the commands below.
Line 94: Line 94:
 ===== Remote Editing ===== ===== Remote Editing =====
  
-In order to make life easier, I would recommend installing [[https://code.visualstudio.com/download|Visual Studio Code]] and then install the [[https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack|Remote Development]] extension pack, which will allow for SSH and WSL remote editing.+In order to make life easier, you may consider installing [[https://code.visualstudio.com/download|Visual Studio Code]] and then install the [[https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack|Remote Development]] extension pack, which will allow for SSH and WSL remote editing.
  
-I have the following contents in //~/sbbs/.vscode/settings.json// in order to make dealing with BBS (code page 437) formatted files a bit easier.  This allows me to hit F1, type `Remote-SSH` and see a list of options for connecting to remote ssh hosts.+The following contents in //sbbs/.vscode/settings.json// will make using VS Code easier and align well with the files in your //sbbs// directory.
  
     {     {
-      "files.encoding": "cp437", 
-      "editor.rulers": [ 
-        76, 
-        80 
-      ], 
-      "editor.formatOnSave": true, 
-      "editor.tabSize": 2, 
-      "editor.renderControlCharacters": true, 
       "files.associations": {       "files.associations": {
-        "*.ssjs": "javascript"+        "*.ssjs": "javascript",
       },       },
-      "[javascript]":+      "[plaintext]": { 
-        "editor.defaultFormatter": "vscode.typescript-language-features", +        "files.encoding": "cp437", 
-        "editor.renderControlCharacters": false, +        "editor.renderControlCharacters": true,
-        "files.encoding": "utf8", +
-      }, +
-      "[json]":+
-        "files.encoding": "utf8", +
-        "editor.renderControlCharacters": false, +
-      }, +
-      "[css]":+
-        "files.encoding": "utf8", +
-        "editor.renderControlCharacters": false, +
-      }, +
-      "[html]":+
-        "files.encoding": "utf8", +
-        "editor.renderControlCharacters": false, +
-      }, +
-      "[ini]": { +
-        "files.encoding": "utf8", +
-        "editor.renderControlCharacters": false,+
       }       }
     }     }
- 
 ===== See Also ===== ===== See Also =====
   * [[:howto:|howto index]]   * [[:howto:|howto index]]