diff --git a/.deepsource.toml b/.deepsource.toml deleted file mode 100644 index bd8a564..0000000 --- a/.deepsource.toml +++ /dev/null @@ -1,9 +0,0 @@ -version = 1 - -[[analyzers]] -name = "go" -enabled = true - - [analyzers.meta] - import_path = "github.com/boramalper/magnetico" - dependencies_vendored = false diff --git a/.env b/.env deleted file mode 100644 index 1f4f415..0000000 --- a/.env +++ /dev/null @@ -1,3 +0,0 @@ -MAGNETICOD_DATA=./magneticod_data/ -MAGNETICOD_CONFIG=./magneticod_conf/ -MAGNETICOW_CONFIG=./magneticow_conf/ diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 638b311..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,10 +0,0 @@ -# These are supported funding model platforms - -github: boramalper # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: boramalper # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -custom: # Replace with a single custom sponsorship URL -liberapay: boramalper diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 5570e31..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,11 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - - package-ecosystem: "gomod" - directory: "/" - schedule: - interval: "weekly" diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index 2915f19..0000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Go - -on: [push, pull_request] - -jobs: - build: - name: Build - runs-on: ubuntu-latest - steps: - - - name: Set up Go 1.x - uses: actions/setup-go@v3 - with: - go-version: ^1.16 - - - name: Check out code into the Go module directory - uses: actions/checkout@v3 - - - name: Build - run: | - make magneticod - make magneticow - - - name: Test - run: | - make test - - - name: Lint - uses: dominikh/staticcheck-action@v1.2.0 - with: - install-go: false - - - name: Check Formatting - run: | - make check-formatting diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 0dc1923..0000000 --- a/.travis.yml +++ /dev/null @@ -1,36 +0,0 @@ -# https://docs.travis-ci.com/user/reference/overview/#virtualisation-environment-vs-operating-system -sudo: false -dist: xenial - -language: go -go: - - "1.13" - -env: - - GO111MODULE=on - -# Only clone the most recent commit. -git: - depth: 1 - -before_install: - # Dump environment variables - - printenv - -install: - - "go get -u -v github.com/kevinburke/go-bindata/..." - -before_script: - - "make magneticod" - - "make magneticow" - - "make image" - -script: - # The Unit Tests - - "make test" - - # Static Analysis (vet) - - "make vet" - - # Check formatting - - "make check-formatting"