This commit is contained in:
Aleksander Cynarski 2019-12-03 21:29:16 +01:00
parent 46a6b93ded
commit cda4924051
Signed by: paramah
GPG Key ID: C4340BA42B9C173A
2 changed files with 25 additions and 0 deletions

8
Makefile.dist Normal file
View File

@ -0,0 +1,8 @@
.EXPORT_ALL_VARIABLES:
GITEA_TOKEN=my_token
GITEA_OWNER=owner
GITEA_REPO=repo
dev:
go run main.go

View File

@ -0,0 +1,17 @@
# run dev
```shell script
cp Makefile.dist Makefile
```
get godep
```shell script
godep restore
```
run
```shell script
make dev
```