bixlabs / authentication

A module in Go for authentication
1 stars 0 forks source link

Executable commands in the bin directory instead of tmp #39

Closed acabreragnz closed 4 years ago

acabreragnz commented 5 years ago

I think ./bin is a more appropiate directory to save the generated build (make build) than ./tmp. If you read the golang documentation you could find that they use ./bin directory to contain executable commands. I know that we are not working with workspaces but seems to be a guideline we could follow. Anyway this is issue is not much important and can be discussed.

jac1013 commented 5 years ago

I agree with this, and we need the binary to reference it in Github anyway, do you think we should put them in ./bin and not .gitignore this folder?

jac1013 commented 4 years ago

Closing this one as we are going to use ./bin for executables that are required in development, build dist should still go to ./tmp because they are not intended to be used as tools in ./bin... examples of what goes in bin is the binary for the linter and the binary for creating swagger documentation.