Skip to content

Commit 2078fd1

Browse files
committed
refactor: github.com/devspace-cloud/devspace -> github.com/loft-sh/devspace
1 parent 3e5a1f9 commit 2078fd1

390 files changed

Lines changed: 1543 additions & 1556 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
Please read this guide if you plan to contribute to the DevSpace CLI. We welcome any kind of contribution. No matter if you are an experienced programmer or just starting, we are looking forward to your contribution.
33

44
## Reporting Issues
5-
If you find a bug while working with the DevSpace CLI, please [open an issue on GitHub](https://github.com/devspace-cloud/devspace/issues/new?labels=kind%2Fbug&template=bug-report.md&title=Bug:) and let us know what went wrong. We will try to fix it as quickly as we can.
5+
If you find a bug while working with the DevSpace CLI, please [open an issue on GitHub](https://github.com/loft-sh/devspace/issues/new?labels=kind%2Fbug&template=bug-report.md&title=Bug:) and let us know what went wrong. We will try to fix it as quickly as we can.
66

77
## Feature Requests
8-
You are more than welcome to open issues in this project to [suggest new features](https://github.com/devspace-cloud/devspace/issues/new?labels=kind%2Ffeature&template=feature-request.md&title=Feature%20Request:).
8+
You are more than welcome to open issues in this project to [suggest new features](https://github.com/loft-sh/devspace/issues/new?labels=kind%2Ffeature&template=feature-request.md&title=Feature%20Request:).
99

1010
## Contributing Code
1111
This project is mainly written in Golang. To contribute code,

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ RUN apk add --update-cache curl tar docker
77
RUN curl -L -o /bin/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.17.3/bin/linux/amd64/kubectl \
88
&& chmod +x /bin/kubectl
99

10-
RUN curl -s -L "https://github.com/devspace-cloud/devspace/releases/$RELEASE_VERSION" | sed -nE 's!.*"([^"]*devspace-linux-amd64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o /bin/devspace \
10+
RUN curl -s -L "https://github.com/loft-sh/devspace/releases/$RELEASE_VERSION" | sed -nE 's!.*"([^"]*devspace-linux-amd64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o /bin/devspace \
1111
&& chmod +x /bin/devspace

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ yarn global add devspace
278278
<summary>via Mac Terminal</summary>
279279

280280
```
281-
curl -s -L "https://github.com/devspace-cloud/devspace/releases/latest" | sed -nE 's!.*"([^"]*devspace-darwin-amd64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o devspace && chmod +x devspace;
281+
curl -s -L "https://github.com/loft-sh/devspace/releases/latest" | sed -nE 's!.*"([^"]*devspace-darwin-amd64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o devspace && chmod +x devspace;
282282
sudo mv devspace /usr/local/bin;
283283
```
284284

@@ -288,7 +288,7 @@ sudo mv devspace /usr/local/bin;
288288
<summary>via Linux Bash</summary>
289289

290290
```
291-
curl -s -L "https://github.com/devspace-cloud/devspace/releases/latest" | sed -nE 's!.*"([^"]*devspace-linux-amd64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o devspace && chmod +x devspace;
291+
curl -s -L "https://github.com/loft-sh/devspace/releases/latest" | sed -nE 's!.*"([^"]*devspace-linux-amd64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o devspace && chmod +x devspace;
292292
sudo install devspace /usr/local/bin
293293
```
294294

@@ -299,7 +299,7 @@ sudo install devspace /usr/local/bin
299299

300300
```
301301
md -Force "$Env:APPDATA\devspace"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
302-
Invoke-WebRequest -UseBasicParsing ((Invoke-WebRequest -URI "https://github.com/devspace-cloud/devspace/releases/latest" -UseBasicParsing).Content -replace "(?ms).*`"([^`"]*devspace-windows-amd64.exe)`".*","https://github.com/`$1") -o $Env:APPDATA\devspace\devspace.exe;
302+
Invoke-WebRequest -UseBasicParsing ((Invoke-WebRequest -URI "https://github.com/loft-sh/devspace/releases/latest" -UseBasicParsing).Content -replace "(?ms).*`"([^`"]*devspace-windows-amd64.exe)`".*","https://github.com/`$1") -o $Env:APPDATA\devspace\devspace.exe;
303303
$env:Path += ";" + $Env:APPDATA + "\devspace";
304304
[Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
305305
```
@@ -1124,15 +1124,15 @@ Help us make DevSpace the best tool for developing, deploying and debugging Kube
11241124

11251125
### Reporting Issues
11261126

1127-
If you find a bug while working with the DevSpace, please [open an issue on GitHub](https://github.com/devspace-cloud/devspace/issues/new?labels=kind%2Fbug&template=bug-report.md&title=Bug:) and let us know what went wrong. We will try to fix it as quickly as we can.
1127+
If you find a bug while working with the DevSpace, please [open an issue on GitHub](https://github.com/loft-sh/devspace/issues/new?labels=kind%2Fbug&template=bug-report.md&title=Bug:) and let us know what went wrong. We will try to fix it as quickly as we can.
11281128

11291129
### Feedback & Feature Requests
11301130

11311131
You are more than welcome to open issues in this project to:
11321132

1133-
- [Give feedback](https://github.com/devspace-cloud/devspace/issues/new?labels=kind%2Ffeedback&title=Feedback:)
1134-
- [Suggest new features](https://github.com/devspace-cloud/devspace/issues/new?labels=kind%2Ffeature&template=feature-request.md&title=Feature%20Request:)
1135-
- [Report Bugs](https://github.com/devspace-cloud/devspace/issues/new?labels=kind%2Fbug&template=bug-report.md&title=Bug%20Report:)
1133+
- [Give feedback](https://github.com/loft-sh/devspace/issues/new?labels=kind%2Ffeedback&title=Feedback:)
1134+
- [Suggest new features](https://github.com/loft-sh/devspace/issues/new?labels=kind%2Ffeature&template=feature-request.md&title=Feature%20Request:)
1135+
- [Report Bugs](https://github.com/loft-sh/devspace/issues/new?labels=kind%2Fbug&template=bug-report.md&title=Bug%20Report:)
11361136

11371137
### Contributing Code
11381138

@@ -1144,7 +1144,7 @@ This project is mainly written in Golang. If you want to contribute code:
11441144
GO111MODULE=on
11451145
GOFLAGS=-mod=vendor
11461146
```
1147-
3. Check-out the project: `git clone https://github.com/devspace-cloud/devspace && cd devspace`
1147+
3. Check-out the project: `git clone https://github.com/loft-sh/devspace && cd devspace`
11481148
4. Make changes to the code
11491149
5. Build the project, e.g. via `go build -o devspace[.exe]`
11501150
6. Evaluate and test your changes `./devspace [SOME_COMMAND]`

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Security Policy
22
We will disclose fixes for vulnerabilities in the release notes and urge you to upgrade once a new release is published. DevSpace versions the configuration in `devspace.yaml` and allows you to use any older configuration with a newer CLI version.
33

4-
**To receive update warnings in the CLI (as part of the terminal output whenever you run a command), you must use an official release binary as published on the [GitHub releases page](https://github.com/devspace-cloud/devspace/releases) of this project.**
4+
**To receive update warnings in the CLI (as part of the terminal output whenever you run a command), you must use an official release binary as published on the [GitHub releases page](https://github.com/loft-sh/devspace/releases) of this project.**
55

66
See the [install instructions for DevSpace](https://devspace.sh/cli/docs/getting-started/installation) for the recommended methods of downloading an official release binary for your platform. Community maintained release binaries (e.g. `brew` formular for DevSpace) may **not** contain the version number and will therefore not be able to perform a version check.
77

cmd/add/add.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package add
22

33
import (
4-
"github.com/devspace-cloud/devspace/cmd/flags"
5-
"github.com/devspace-cloud/devspace/pkg/devspace/plugin"
6-
"github.com/devspace-cloud/devspace/pkg/util/factory"
4+
"github.com/loft-sh/devspace/cmd/flags"
5+
"github.com/loft-sh/devspace/pkg/devspace/plugin"
6+
"github.com/loft-sh/devspace/pkg/util/factory"
77
"github.com/spf13/cobra"
88
)
99

cmd/add/add_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package add
44
// "strings"
55
// "testing"
66

7-
// "github.com/devspace-cloud/devspace/cmd/flags"
7+
// "github.com/loft-sh/devspace/cmd/flags"
88

99
// "gotest.tools/assert"
1010
// )

cmd/add/deployment.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package add
33
import (
44
"strconv"
55

6-
"github.com/devspace-cloud/devspace/cmd/flags"
7-
"github.com/devspace-cloud/devspace/pkg/devspace/config/versions/latest"
8-
"github.com/devspace-cloud/devspace/pkg/util/factory"
9-
"github.com/devspace-cloud/devspace/pkg/util/message"
6+
"github.com/loft-sh/devspace/cmd/flags"
7+
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
8+
"github.com/loft-sh/devspace/pkg/util/factory"
9+
"github.com/loft-sh/devspace/pkg/util/message"
1010
"github.com/pkg/errors"
1111
"github.com/spf13/cobra"
1212
)

cmd/add/deployment_test.go

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ import (
66
"os"
77
"testing"
88
9-
"github.com/devspace-cloud/devspace/cmd/flags"
10-
"github.com/devspace-cloud/devspace/pkg/devspace/config/loader"
11-
"github.com/devspace-cloud/devspace/pkg/devspace/config/constants"
12-
"github.com/devspace-cloud/devspace/pkg/devspace/config/versions"
13-
"github.com/devspace-cloud/devspace/pkg/devspace/config/versions/config"
14-
"github.com/devspace-cloud/devspace/pkg/devspace/config/versions/latest"
15-
"github.com/devspace-cloud/devspace/pkg/devspace/config/versions/v1beta3"
16-
"github.com/devspace-cloud/devspace/pkg/util/fsutil"
17-
"github.com/devspace-cloud/devspace/pkg/util/log"
18-
"github.com/devspace-cloud/devspace/pkg/util/ptr"
19-
"github.com/devspace-cloud/devspace/pkg/util/survey"
9+
"github.com/loft-sh/devspace/cmd/flags"
10+
"github.com/loft-sh/devspace/pkg/devspace/config/loader"
11+
"github.com/loft-sh/devspace/pkg/devspace/config/constants"
12+
"github.com/loft-sh/devspace/pkg/devspace/config/versions"
13+
"github.com/loft-sh/devspace/pkg/devspace/config/versions/config"
14+
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
15+
"github.com/loft-sh/devspace/pkg/devspace/config/versions/v1beta3"
16+
"github.com/loft-sh/devspace/pkg/util/fsutil"
17+
"github.com/loft-sh/devspace/pkg/util/log"
18+
"github.com/loft-sh/devspace/pkg/util/ptr"
19+
"github.com/loft-sh/devspace/pkg/util/survey"
2020
"github.com/pkg/errors"
2121
2222
yaml "gopkg.in/yaml.v2"
@@ -322,4 +322,4 @@ func loadConfigFromPath() (*latest.Config, error) {
322322
323323
return newConfig, nil
324324
}
325-
*/
325+
*/

cmd/add/image.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package add
22

33
import (
4-
"github.com/devspace-cloud/devspace/cmd/flags"
5-
"github.com/devspace-cloud/devspace/pkg/util/factory"
6-
"github.com/devspace-cloud/devspace/pkg/util/message"
4+
"github.com/loft-sh/devspace/cmd/flags"
5+
"github.com/loft-sh/devspace/pkg/util/factory"
6+
"github.com/loft-sh/devspace/pkg/util/message"
77
"github.com/pkg/errors"
88
"github.com/spf13/cobra"
99
)

cmd/add/image_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import (
66
"os"
77
"testing"
88
9-
"github.com/devspace-cloud/devspace/cmd/flags"
10-
"github.com/devspace-cloud/devspace/pkg/devspace/config/loader"
11-
"github.com/devspace-cloud/devspace/pkg/devspace/config/constants"
12-
"github.com/devspace-cloud/devspace/pkg/devspace/config/versions/latest"
13-
"github.com/devspace-cloud/devspace/pkg/util/log"
9+
"github.com/loft-sh/devspace/cmd/flags"
10+
"github.com/loft-sh/devspace/pkg/devspace/config/loader"
11+
"github.com/loft-sh/devspace/pkg/devspace/config/constants"
12+
"github.com/loft-sh/devspace/pkg/devspace/config/versions/latest"
13+
"github.com/loft-sh/devspace/pkg/util/log"
1414
"gotest.tools/assert"
1515
)
1616

0 commit comments

Comments
 (0)