https://github.com/getshifter/go-create-shifter-package
https://github.com/getshifter/go-create-shifter-package
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/getshifter/go-create-shifter-package
- Owner: getshifter
- Created: 2016-08-30T08:43:46.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-06-28T05:00:17.000Z (almost 8 years ago)
- Last Synced: 2024-06-20T10:22:33.390Z (about 2 years ago)
- Language: Go
- Size: 12.7 KB
- Stars: 4
- Watchers: 9
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-create-shifter-package for Shifter
> This tool is no longer usable with the termination of Shifter Project V1(2018.03).
## Download
Get binary from here.
- https://github.com/getshifter/go-create-shifter-package/releases
## How to use
https://support.getshifter.io/user-guide/how-to-import-your-wordpress-site-into-shifter
## Development
If you execute from source code yourself to contribute.
### Run localy
```
$ go get github.com/jhoonb/archivex
$ go run main.go
```
### Build and Release
Build single binary for local os.
```
$ go build main.go
```
Build for multi os(macox, linux, windows).
```
$ mkdir build
$ go get github.com/mitchellh/gox
$ gox -os="linux darwin windows" -arch="386 amd64" -output "build/create-shifter-package_{{.OS}}_{{.Arch}}"
```
upload releases to github. (for maintaner information)
```
$ go get github.com/tcnksm/ghr
$ ghr --replace -u getshifter v0.1.1 build/
```