-
Notifications
You must be signed in to change notification settings - Fork 923
How to Contribute
There are many ways to contribute to the SQL Operations Studio project: logging bugs, submitting pull requests, reporting issues, and creating suggestions.
If you want to understand how SQL Operations Studio works or want to debug an issue, you'll want to get the source, build it, and run the tool locally.
- git
- Node.JS (Node version v7.9.0 with npm 4.2.0).
-
Python (version
v2.7
recommended,v3.x.x
is not supported), as well as a C/C++ compiler tool chain. - Note that if you get the error Error: %1 is not a valid Win32 application. you can fix that by running the gulp electron-ia32 command.
- If you don't have gulp installed run npm install gulp-cli -g first.
Windows
-
Warning: nodejs/node-gyp#972 causes compile errors if you are using Visual Studio 2015 (
error C2373: '__pfnDliNotifyHook2': redefinition;
) so make sure to have at least node.js v6.x installed that includes the fix -
Warning: npm/npm#12698 prevents us from using
npm < 3.10.8
, be sure to installnpm >= 3.10.8
(npm install -g [email protected]
) after you have installed node.js. - In addition to Python v2.7, make sure you have a PYTHON environment variable set to
drive:\path\to\python.exe
, not to a folder -
Visual Studio 2013 for Windows Desktop or Visual Studio 2015, make sure to select the option to install all C++ tools and the Windows SDK. You can also use Felix Rieseberg's Windows Build Tools npm module. Then all you need is this one-liner
npm install --global --production windows-build-tools
OS X
- Command line developer tools
- Python should be installed already
-
Xcode and the Command Line Tools (Xcode -> Preferences -> Downloads), which will install
gcc
and the related toolchain containingmake
Linux
- Python v2.7
make
- A proper C/C++11 compiler tool chain, for example GCC
-
native-keymap needs
libx11-dev
andlibxkbfile-dev
.- On Debian-based Linux:
sudo apt-get install libx11-dev libxkbfile-dev
- On Red Hat-based Linux:
sudo yum install libX11-devel.x86_64 libxkbfile-devel.x86_64 # or .i686
.
- On Debian-based Linux:
-
keytar needs
libsecret-1-dev
.- On Debian-based Linux:
sudo apt-get install libsecret-1-dev
. - On Red Hat-based Linux:
sudo yum install libsecret-devel
.
- On Debian-based Linux:
- Building deb and rpm packages requires
fakeroot
andrpm
, run:sudo apt-get install fakeroot rpm
After you have these tools installed, run the following commands to clone github repository, install dependencies, and compile source code:
OS X
git clone https://github.com/microsoft/sqlopsstudio
cd sqlopsstudio
./scripts/npm.sh install
gulp compile
Windows
git clone https://github.com/microsoft/sqlopsstudio
cd sqlopsstudio
scripts\npm.bat install
gulp compile
Linux
git clone https://github.com/microsoft/sqlopsstudio
cd sqlopsstudio
./scripts/npm.sh install --arch=x64
gulp compile
# for 32bit Linux or Windows
#./scripts/npm.sh install --arch=ia32
Note: For more information on how to install NPM modules globally on UNIX systems without resorting to sudo
, refer to this guide.
Note: To install SQL Operations Studio's dependencies as root
(eg: Docker environments) make sure you use --unsafe-perm
when invoking ./scripts/npm.sh
.
OS X and Linux
./scripts/sql.sh
Windows
.\scripts\sql.bat
if you encounter too many files opened error on macOS, run sudo launchctl limit maxfiles 200000 200000 then retry. The default settings is sudo launchctl limit maxfiles 256 unlimited
# for macOS
gulp --max_old_space_size=8192 vscode-darwin
cd ../carbon-darwin
# for windows
gulp –max_old_space_size=8192 vscode-win32-ia32
cd ../carbon-windows
# for linux
gulp –max_old_space_size=8192 vscode-linux-x64
cd ../carbon-linux
git clean -fxd
From a terminal, where you have cloned the sqlopsstudio
repository, execute the following command to run the TypeScript incremental builder:
npm run watch
It will do an initial full build and then watch for file changes, compiling those changes incrementally, enabling a fast, iterative coding experience.
You can either use VS Code or the Chrome Developer Tools to debug SQL Operations Studio.
- Install the Debugger for Chrome extension. This extension will let you attach to and debug client side code running in Chrome.
- Open the
sqlopsstudio
repository folder - Choose the
Launch sqlops
launch configuration from the launch dropdown in the Debug viewlet and pressF5
.
-
Run the
Developer: Toggle Developer Tools
command from the Command Palette in your development instance of SQL Operations Studio to launch the Chrome tools. -
It's also possible to debug the released versions of SQL Operations Studio, since the sources link to sourcemaps hosted online.
Run the unit tests directly from a terminal by running ./scripts/test.sh
from the sqlopsstudio
folder (scripts\test
on Windows). The test README has complete details on how to run and debug tests, as well as how to produce coverage reports.
We use tslint for linting our sources. You can run tslint across the sources by calling gulp tslint
from a terminal or command prompt.
To lint the source as you make changes you can install the tslint extension.
Even if you have push rights on the Microsoft/sqlopsstudio repository, you should create a personal fork and create feature branches there when you need them. This keeps the main repository clean and your personal workflow cruft out of sight.
Before we can accept a pull request from you, you'll need to sign a Contributor License Agreement (CLA). It is an automated process and you only need to do it once.
To enable us to quickly review and accept your pull requests, always create one pull request per issue and link the issue in the pull request. Never merge multiple requests in one unless they have the same root cause. Be sure to follow our coding guidelines and keep code changes as small as possible. Avoid pure formatting changes to code that has not been modified otherwise. Pull requests should contain tests whenever possible.
Check out the full issues list for a list of all potential areas for contributions.
To improve the chances to get a pull request merged you should select an issue that is labelled with the help-wanted
or bug
labels. If the issue you want to work on is not labelled with help-wanted
or bug
, you can start a conversation with the issue owner asking whether an external contribution will be considered.
We're also interested in your feedback for the future of SQL Operations Studio. You can submit a suggestion or feature request through the issue tracker. To make this process more effective, we're asking that these include more information to help define them more clearly.
In order to keep the conversation clear and transparent, please limit discussion to English and keep things on topic with the issue. Be considerate to others and try to be courteous and professional at all times.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
Documentation
- Get Started
- Install Azure Data Studio
- Telemetry
- Microsoft Ready 2019 Lab
- MS Docs Overview
- Debug Trace Logging
- Troubleshoot Azure Authentication Issues
- FAQ
Contributing
- How to Contribute
- Developer Getting Started
- Submitting Bugs and Suggestions
- Localization
- Troubleshooting Build Issues
- Engineering FAQ
- How to update typings files
- Importing and using modules
- UI Guidelines
- Angular UI Guidelines
- Contributor License Agreement
- Azure Data Studio Tests
- Why is the Azure Data Studio license different than the repository license?
Tool Services
Extensibility Reference
- Getting Started
- Extensibility API
- Contribution Points
- Context Variables
- Servers and Data Explorer Tree Views
- Debugging with VS Code
- Extension Authoring
- Building multiple insight widgets
- Microsoft Ignite lab
- List of Extensions
- Replace sqlops namespace
Project Management