Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasepe committed Dec 4, 2020
0 parents commit d86d3b2
Show file tree
Hide file tree
Showing 62 changed files with 9,345 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
## Intellij
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/encodings.xml
.idea/**/compiler.xml
.idea/**/misc.xml
.idea/**/modules.xml
.idea/**/vcs.xml

## VSCode
.vscode/

## File-based project format:
*.iws
*.iml
.idea/

# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
*.dat
*.DS_Store

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Goreleaser builds
**/dist/**

# This is my wip ideas folder
experiments/**
50 changes: 50 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
# Run locally with: goreleaser --rm-dist --snapshot --skip-publish
project_name: g2d
before:
hooks:
- go mod tidy
- go mod download
builds:
- binary: '{{ .ProjectName }}'
main: ./main.go
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X main.Version={{.Version}} -X main.GitCommit={{.Commit}}
- -a -extldflags "-static"
goos:
- windows
- linux
- darwin
goarch:
- amd64
archives:
- replacements:
darwin: macOS
windows: win
amd64: 64-bit
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .ProjectName }}_{{ .Tag }}"
nfpms:
-
package_name: g2d
vendor: Luca Sepe
homepage: https://lucasepe.it/
maintainer: Luca Sepe <[email protected]>
description: g2D Programming Language - Create beatiful drawings using an adhoc interpreted language.
license: MIT
replacements:
amd64: 64-bit
formats:
- deb
- rpm
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## 0.5.0 (Unreleased)

Loading

0 comments on commit d86d3b2

Please sign in to comment.