Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
todo: logo
  • Loading branch information
CallMeEchoCodes committed Jul 26, 2024
0 parents commit 8570e37
Show file tree
Hide file tree
Showing 17 changed files with 988 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#
# https://help.github.com/articles/dealing-with-line-endings/
#
# Linux start script should use lf
/gradlew text eol=lf

# These are Windows script files and should use crlf
*.bat text eol=crlf

22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build
on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1
- uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "microsoft"
- run: chmod +x ./gradlew
- run: ./gradlew build
- uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/
49 changes: 49 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# gradle

.gradle/
build/
out/
classes/

# eclipse

*.launch

# idea

.idea/
*.iml
*.ipr
*.iws

# vscode

.settings/
.vscode/
bin/
.classpath
.project

# macos

*.DS_Store

# fabric

run/

# java

hs_err_*.log
replay_*.log
*.hprof
*.jfr

# stonecutter
**/*/tokens.gradle

# Ignore Gradle project-specific cache directory
.gradle

# Ignore Gradle build output directory
build
Loading

0 comments on commit 8570e37

Please sign in to comment.