You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Puppet VSCode website [https://puppet-vscode.github.io/](https://puppet-vscode.github.io) contains all of the documentation previously held in this README, simplified and organized. There is also new content that shows off all the current features in greater detail, as well as new ways to use the Puppet VSCode Extension with other technologies like the [Microsoft Remote Development Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack). This README retains some quick information on how to get started and where to get help if things go wrong.
9
7
10
-
We are proud to announce the new Puppet VSCode website [https://puppet-vscode.github.io/](https://puppet-vscode.github.io/)! This website contains all of the documentation previously held in this README, simplified and organized. There is also new content that shows off all the current features in greater detail, as well as new ways to use the Puppet VSCode Extension with other technologies like the [Microsoft Remote Development Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack). This README retains some quick information on how to get started and where to get help if things go wrong.
8
+
## Quick start
9
+
10
+
> For a more detailed walkthrough see the [official documentation](https://puppet-vscode.github.io/docs/getting-started/)
11
+
12
+
- Step 1: Install a supported version of the Puppet Development Kit on your system (see [Requirements](#requirements) for more information).
13
+
- Step 2: Install the Puppet [extension](https://marketplace.visualstudio.com/items?itemName=puppet.puppet-vscode) for Visual Studio Code.
14
+
- Step 3: Open or create a Puppet manifest file (a file with a `.pp` or `.epp` extension or named `Puppetfile`) and start automating!
11
15
12
16
## Table of Contents
13
17
@@ -47,14 +51,6 @@ We are proud to announce the new Puppet VSCode website [https://puppet-vscode.gi
47
51
-[Telemetry](#telemetry)
48
52
-[License](#license)
49
53
50
-
## Quick start
51
-
52
-
> For a more detailed walkthrough see the [official documentation](https://puppet-vscode.github.io/docs/getting-started/)
53
-
54
-
- Step 1: Install a supported version of the Puppet Development Kit on your system (see [Requirements](#requirements) for more information).
55
-
- Step 2: Install the Puppet [extension](https://marketplace.visualstudio.com/items?itemName=puppet.puppet-vscode) for Visual Studio Code.
56
-
- Step 3: Open or create a Puppet manifest file (a file with a `.pp` or `.epp` extension or named `Puppetfile`) and start automating!
57
-
58
54
## Features
59
55
60
56
A [Visual Studio Code](https://code.visualstudio.com/)[extension](https://marketplace.visualstudio.com/VSCode) that provides rich support for the [Puppet](https://www.puppet.com) language, including features such as syntax highlighting, linting, debugging, IntelliSense and more.
@@ -112,15 +108,15 @@ You can find instructions and installation links here:
112
108
113
109
You can install the official release of the Puppet extension by following the steps in the [Visual Studio Code documentation](https://code.visualstudio.com/docs/editor/extension-gallery). In the Extensions pane, search for "puppet-vscode" extension and install it there. You will get notified automatically about any future extension updates!
You can also install the extension without access to the internet by following these [instructions](https://code.visualstudio.com/docs/editor/extension-gallery#_install-from-a-vsix.)
118
114
119
115
## Experience a Problem?
120
116
121
117
### Puppet Agent Install
122
118
123
-
A commonly encountered problem is not having the PDK or Puppet Agent installed on the computer you are running VSCode on. As noted in the [Requirements section](https://github.com/lingua-pupuli/puppet-vscode/blob/master/README.md#requirements), you will need to have the PDK or Puppet Agent installed in order to fully use this extension, as the extension uses the Puppet binaries and the Ruby language bundled into the PDK or agent install in order to function.
119
+
A commonly encountered problem is not having the PDK or Puppet Agent installed on the computer you are running VSCode on. As noted in the [Requirements section](https://github.com/puppetlabs/puppet-vscode/blob/master/README.md#requirements), you will need to have the PDK or Puppet Agent installed in order to fully use this extension, as the extension uses the Puppet binaries and the Ruby language bundled into the PDK or agent install in order to function.
124
120
125
121
If you are receiving an error right after opening a Puppet file saying that a Puppet Agent install could not be found, ensure that Puppet is installed on the system. The VSCode extension attempts to find a valid Puppet install if a path is not configured in `puppet.installDirectory` in `User Settings`, so if Puppet is installed but not in a default path please check that your setting points to the correct path.
126
122
@@ -135,7 +131,7 @@ You can reload the Puppet Language Server by opening the command palette and sta
135
131
If you're having trouble with the Puppet extension, please follow these instructions
136
132
to file an issue on our GitHub repository:
137
133
138
-
### 1. File an issue on our [Issues Page](https://github.com/lingua-pupuli/puppet-vscode/issues)
134
+
### 1. File an issue on our [Issues Page](https://github.com/puppetlabs/puppet-vscode/issues)
139
135
140
136
Make sure to fill in the information that is requested in the issue template as it
141
137
will help us investigate the problem more quickly.
@@ -157,7 +153,6 @@ Restart Visual Studio Code and try to reproduce the problem, then examine the lo
Copy file name to clipboardExpand all lines: tools/RELEASE.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@
4
4
5
5
### Vendor Latest Puppet Language Server and Syntax Files
6
6
7
-
1. Ensure [puppet-editor-services](https://github.com/lingua-pupuli/puppet-editor-services) has been tagged and release process followed. Note version.
8
-
1. Ensure [puppet-editor-syntax](https://github.com/lingua-pupuli/puppet-editor-syntax) has been tagged and release process followed. Note version.
9
-
1.`git clone https://github.com/lingua-pupuli/puppet-vscode` or `git clean -xfd` on working copy
7
+
1. Ensure [puppet-editor-services](https://github.com/puppetlabs/puppet-editor-services) has been tagged and release process followed. Note version.
8
+
1. Ensure [puppet-editor-syntax](https://github.com/puppetlabs/puppet-editor-syntax) has been tagged and release process followed. Note version.
9
+
1.`git clone https://github.com/puppetlabs/puppet-vscode` or `git clean -xfd` on working copy
10
10
1. Update `editor-components.json` with latest `puppet-editor-services` and `puppet-editor-syntax` versions. These can be seperate commits
11
11
1. Create PR
12
12
13
13
## Prepare VSCode extension
14
14
15
-
1.`git clone https://github.com/lingua-pupuli/puppet-vscode` or `git clean -xfd` on working copy
15
+
1.`git clone https://github.com/puppetlabs/puppet-vscode` or `git clean -xfd` on working copy
16
16
1. Update `CHANGELOG` with all tickets from release milestone for `puppet-vscode`, and any tickets from `puppet-editor-services` and `puppet-editor-syntax` that apply to this release.
17
17
1. Increment `version` field of `package.json`
18
18
1. Run `npm install` to update `package-lock.json`
@@ -21,7 +21,7 @@
21
21
22
22
## Package VSCode extension
23
23
24
-
1.`git clone https://github.com/lingua-pupuli/puppet-vscode` or `git clean -xfd` on working copy
24
+
1.`git clone https://github.com/puppetlabs/puppet-vscode` or `git clean -xfd` on working copy
25
25
1.`git tag -a '<version>' -m '<version>' <commit id>`
26
26
1.`git push <remote> <version>`
27
27
1.`git checkout <version>`
@@ -35,6 +35,6 @@
35
35
## Publish VSCode extnsion
36
36
37
37
1. Install personal access token from https://pogran.visualstudio.com/puppet-vscode ([instructions](https://code.visualstudio.com/api/working-with-extensions/publishing-extension#get-a-personal-access-token))
38
-
1.`git clone https://github.com/lingua-pupuli/puppet-vscode` or `git clean -xfd` on working copy
38
+
1.`git clone https://github.com/puppetlabs/puppet-vscode` or `git clean -xfd` on working copy
0 commit comments