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
* Add devcontainer
* Add test tasks for the different Redis versions. Specify default .NET solution.
* Minor clarification by moving initialization to constructor
* Update devcontainer setup, and vscode tasks, to match updated Redis versions from CI pipeline.
* Include section on DevContainers
* Include section on DevContainers
Signed-off-by: haysch <36488481+haysch@users.noreply.github.com>
* Fix "spelling mistakes"
* add explenation about dev containers
* wordlist
---------
Signed-off-by: haysch <36488481+haysch@users.noreply.github.com>
Co-authored-by: shacharPash <93581407+shacharPash@users.noreply.github.com>
Co-authored-by: shacharPash <shachar.pashchur@redis.com>
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+58-2
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,67 @@ Here's how to get started with your code contribution:
34
34
2. Do the changes in your fork
35
35
3. Write your tests
36
36
37
-
4. Use the `docker run -p 6379:6379 -it redis/redis-stack-server:edge` as your local environment for running the functional tests.
38
-
5. Make sure your tests pass using `dotnet test'
37
+
4. Use the `docker run -p 6379:6379 -it redis/redis-stack-server:edge` as your local environment for running the functional tests. You can also use Development Container as described below.
38
+
5. Make sure your tests pass using `dotnet test`
39
39
6. Push your changes to GitHub
40
40
7. Open a pull request
41
41
42
+
## Development Container
43
+
44
+
Development Containers are an easy way to define and setup a reproducible development environment by using containers.
45
+
NRedisStack provides a [development container environment](https://containers.dev/) that can be used to get running relatively fast without focusing on the different Redis deployments.
46
+
47
+
The development container comes packed with .NET 6 and 7, required by the testing suite, as well as the currently supported Redis versions that are run as part of the CI pipeline.
48
+
49
+
Development containers are supported in a few [editors](https://containers.dev/supporting#editors) or by using the [`devcontainer-cli` tool](https://github.com/devcontainers/cli).
50
+
51
+
This guide explains how to use the existing development container setup for this project.
52
+
53
+
### Prerequisites
54
+
55
+
Before you start, make sure you have the following installed:
56
+
57
+
-[Visual Studio Code](https://code.visualstudio.com/)
58
+
-[Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) for VS Code
59
+
60
+
### Steps to Use the Existing Development Container Setup
61
+
62
+
1.**Clone the Project:** Start by cloning the project's repository to your local machine using Git.
63
+
64
+
2.**Install Prerequisites:** Ensure you have Visual Studio Code and the Dev Containers extension installed.
65
+
66
+
3.**Open in Development Container:**
67
+
68
+
a. Open the cloned project directory using Visual Studio Code.
69
+
70
+
b. VS Code should detect the `.devcontainer` folder and the associated configuration files.
71
+
72
+
c. You will likely see a notification suggesting reopening the project in a development container:
Click on this notification or press `Ctrl + Shift + P` (or `Cmd + Shift + P` on Mac) and type _"Dev Containers: Reopen in Container"_. Select the suggestion that appears.
76
+
77
+
d. Visual Studio Code will build the Docker image according to the configuration and start a container using the specified setup.
78
+
79
+
4.**Develop Inside the DevContainer:**
80
+
81
+
You're now working within the development container environment. Access extensions, dependencies, and settings specified in `devcontainer.json`. Edit code, use the integrated terminal, and run commands as usual.
82
+
83
+
5.**Save and Commit:**
84
+
85
+
Changes made within the development container will be saved to your local repository. Use Git within the container to manage changes, create branches, commit, and push code.
86
+
87
+
6.**Stop the DevContainer:**
88
+
89
+
Close the development container by clicking the "Close Remote Connection" button in the bottom-left corner of the VS Code window. This stops the container while preserving changes.
90
+
91
+
7.**Resume Work:**
92
+
93
+
Reopen the project in the development container to work on it again using the same steps.
94
+
95
+
By using the existing `.devcontainer` setup, you benefit from a consistent development environment tailored to the project's requirements. For specific configuration details or issues, consult the project documentation or ask maintainers for assistance.
0 commit comments