Skip to content

Commit

Permalink
transfer ownership to GFSC
Browse files Browse the repository at this point in the history
  • Loading branch information
wheresalice committed May 17, 2021
1 parent 795fbcf commit b924e36
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ changelog:
- Merge pull request
brews:
- tap:
owner: wheresalice
owner: geeksforsocialchange
name: homebrew-meeting-mood
description: Web app to collect people's moods in a meeting
homepage: https://github.com/wheresalice/meeting-mood
homepage: https://github.com/geeksforsocialchange/meeting-mood
license: MIT
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# syntax=docker/dockerfile:1
FROM golang:1.16-alpine
WORKDIR /go/src/github.com/wheresalice/meeting-mood/
WORKDIR /go/src/github.com/geeksforsocialchange/meeting-mood/
COPY . .
#RUN go mod download
RUN CGO_ENABLED=0 GOOS=linux go build -o meeting-mood .

FROM scratch
COPY --from=0 /go/src/github.com/wheresalice/meeting-mood/meeting-mood /
COPY --from=0 /go/src/github.com/geeksforsocialchange/meeting-mood/meeting-mood /
COPY Procfile /
CMD ["/meeting-mood"]
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Wheresalice
Copyright (c) 2021 Geeks for Social Change

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ The easiest way of doing this is to deploy this repository as a Dokku app. We p

There are a number of other ways you can get hold the binary to run:

* Download the appropriate binary from the [latest release](https://github.com/WheresAlice/meeting-mood/releases/latest)
* Run `brew install wheresalice/meeting-mood/meeting-mood` to install via Homebrew
* Download the appropriate binary from the [latest release](https://github.com/geeksforsocialchange/meeting-mood/releases/latest)
* Run `brew install geeksforsocialchange/meeting-mood/meeting-mood` to install via Homebrew
* Clone this repo and run `go build`

If you are running the binary outside of Dokku/Heroku then it will listen on port 8844 by default.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/WheresAlice/meeting-mood
module github.com/geeksforsocialchange/meeting-mood

go 1.16

Expand Down

0 comments on commit b924e36

Please sign in to comment.