forked from twinnydotdev/twinny
-
Notifications
You must be signed in to change notification settings - Fork 0
Development Quickstart
bash edited this page Nov 6, 2024
·
1 revision
This page shows how to start developing the copilot-checkpoints plugin based on Twinny.
These steps are done on Windows 11. Let the team know if you need help doing this on a different operating system.
- Go to the repository, click on the green
Codebutton, then hit the copy icon.

- Choose a place to store this project, then navigate into it.

- Right-click on a space in the projects folder, hit
Show more options, thenGit Bash Here. In the window that appears, pastegit clone https://github.com/gutbash/copilot-checkpoints. This will clone the repository to your projects folder.

- Navigate into the
copilot-checkpointsfolder. Right-click on a space in the projects folder, hitShow more options, thenOpen with Code. This will open the project in VSCode.

- Click
Terminalin the top left, thenNew Terminal. You can also press Ctrl+Shift+`

- Run
npm install. This will install the necessary packages to run the plugin.

- Press
F5to start the development server (theF5key is usually located on the top row of the keyboard), then hitDebug Anywayfrom the window that pops up. This will open a new VSCode window.

- The original window is your (1) development environment where you can develop the plugin. The new window that opens is your (2) test environment where you can test the plugin.

- Press Ctrl+Shift+P in your (1) development environment, then search for
Developer: Toggle Developer Tools. This will open a new window.

- This new window allows you to see development messages that occur in the (2) test environment.

Congratulations! You can start developing the plugin.