https://github.com/code-yeongyu/govenv
A GOPATH activate maker, equivalent of python virtual env.
https://github.com/code-yeongyu/govenv
Last synced: 8 months ago
JSON representation
A GOPATH activate maker, equivalent of python virtual env.
- Host: GitHub
- URL: https://github.com/code-yeongyu/govenv
- Owner: code-yeongyu
- License: mit
- Created: 2020-02-29T11:31:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-12T00:16:38.000Z (over 5 years ago)
- Last Synced: 2025-01-04T04:14:16.790Z (9 months ago)
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# govenv
Govenv: A GOPATH activate maker just like a python virtual env.# How to use?
Make sure you have downloaded the source code and build with this command.
```bash
go build govenv.go
```
Done! Just move the govenv binary file to your $PATH directory.
Now, after making a directory for your golang project, just type following command to create an activate script just like you've seen on the python virtual env.
```
govenv
```
Then place your source code in the src/ directory. Done!