Safe environment to run the project #1213
Replies: 3 comments 1 reply
-
@OscarGA I am a huge fan of Docker for dev environments. (I too have suffered from wrangling the versions of all the tools into alignment...) But... You've left off one bit information that would double the value of your Dockerfile. Would you consider adding a set of instructions that describe how to invoke it? It could go on the top of the Dockerfile, and I'm guessing that it's as simple as:
(I am sure I could farble around and get it working, but you already know this information. Placing those instructions in the Dockerfile would save me (and every other newcomer) minutes (or hours?) getting it going). Thanks. |
Beta Was this translation helpful? Give feedback.
-
Better and better! I am just seeing the .devcontainer directory now. I'm just a consumer of the SQLTools extension, but it's comforting to know that if I had a hankering to do real software development, I would have a safe environment for it. Are there instructions for telling people like @OscarGA how to use it after opening it in VS Code? Thanks again for a really useful project. |
Beta Was this translation helpful? Give feedback.
-
@OscarGA you may like to try the following steps (which assume you have installed Docker Desktop):
If you plan to make changes and submit a PR, create a new branch first. Feedback on these steps is welcome, and when they're verified/improved we could add them into the docs, for example at https://vscode-sqltools.mteixeira.dev/en/contributing/building. In fact, you could edit src/pages/en/contributing/building.mdx on a branch and submit the changes as a PR. |
Beta Was this translation helpful? Give feedback.
-
Hi community,
I was dealing with some issues in my local PC trying to setup the environment to run this project, so I ended up with a creation of a simple Docker file that I created to setup and isolate the environment.
Since I'm new to typescript development, this was my solution to all the problems I had while trying to set up the environment to start contributing.
you can find the link to the Docker file here.
Beta Was this translation helpful? Give feedback.
All reactions