We welcome contributions! Feel free to report issues or submit pull requests on GitHub.
If an error occurs, open VS Code’s DevTools to retrieve logs and attach them to your issue report. Access DevTools by:
- Pressing
F12
- Pressing
Shift + Ctrl + I
- Selecting
Help > Toggle Developer Tools
from the menu
-
Clone the repository.
-
Install dependencies:
npm run install:all #Install package dependencies for both the extension and React webview source code.
-
Run the extension:
npm run start:ui #Runs the React webview source code in development mode. Open http://localhost:3000 to view it in the browser. npm run build:ui #Build React webview source code. Must be executed before compiling or running the extension. npm run compile #Compile VS Code extension
-
Open the project in VS Code and press
F5
to launch the extension.
We welcome contributions to Loopify! Here’s how you can help:
-
Fork the repository.
-
Create a feature branch:
git checkout -b feature-name
-
Commit your changes:
git commit -m 'Add feature-name'
-
Push to the branch:
git push origin feature-name
-
Open a pull request on Github.