Show More
@@ -114,6 +114,30 b' following command from inside the cloned' | |||
|
114 | 114 | fine on both MacOS and Linux platforms. |
|
115 | 115 | |
|
116 | 116 | |
|
117 | Create config.nix for development | |
|
118 | --------------------------------- | |
|
119 | ||
|
120 | In order to run proper tests and setup linking across projects, a config.nix | |
|
121 | file needs to be setup:: | |
|
122 | ||
|
123 | # create config | |
|
124 | mkdir -p ~/.nixpkgs | |
|
125 | touch ~/.nixpkgs/config.nix | |
|
126 | ||
|
127 | # put the below content into the ~/.nixpkgs/config.nix file | |
|
128 | # adjusts, the path to where you cloned your repositories. | |
|
129 | ||
|
130 | { | |
|
131 | rc = { | |
|
132 | sources = { | |
|
133 | rhodecode-vcsserver = "/home/dev/rhodecode-vcsserver"; | |
|
134 | rhodecode-enterprise-ce = "/home/dev/rhodecode-enterprise-ce"; | |
|
135 | rhodecode-enterprise-ee = "/home/dev/rhodecode-enterprise-ee"; | |
|
136 | }; | |
|
137 | }; | |
|
138 | } | |
|
139 | ||
|
140 | ||
|
117 | 141 |
|
|
118 | 142 | Creating a Development Configuration |
|
119 | 143 | ------------------------------------ |
General Comments 0
You need to be logged in to leave comments.
Login now