diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..5c96d0d --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +npm-debug.log \ No newline at end of file diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml new file mode 100644 index 0000000..c02243c --- /dev/null +++ b/.gitea/workflows/main.yaml @@ -0,0 +1,36 @@ +name: Build and Push Docker Image +run-name: ${{ gitea.actor }} +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Use Bun + uses: oven-sh/setup-bun@v2 + with: + bun-version: 1.1.29 + + - name: Install dependencies + run: bun install + + - name: Build + run: bun run build + + - name: Set docker chmod (temp solution) + run: sudo chmod 666 /var/run/docker.sock + + - name: Docker - Login + uses: docker/login-action@v1 + with: + registry: git.hashdot.co + username: ${{ secrets.DOCKER_USER }} + password: ${{ secrets.DOCKER_PASSWORD }} \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..be1f168 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# Dependencies +node_modules + +# Local env files +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +# Testing +coverage + +# Build Outputs +out/ +build +dist + + +# Debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Misc +.DS_Store +*.pem diff --git a/apps/.gitkeep b/apps/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/biome.json b/biome.json new file mode 100644 index 0000000..ad4c622 --- /dev/null +++ b/biome.json @@ -0,0 +1,37 @@ +{ + "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", + "formatter": { + "enabled": true, + "formatWithErrors": false, + "indentStyle": "space", + "indentWidth": 2, + "lineEnding": "lf", + "lineWidth": 80, + "attributePosition": "auto", + "ignore": ["**/build", "**/coverage", "**/*.json"] + }, + "organizeImports": { "enabled": true }, + "linter": { + "enabled": true, + "rules": { + "recommended": true, + "suspicious": { "noConsoleLog": "warn" }, + "correctness": { "noChildrenProp": "off" } + }, + "ignore": ["**/*.json", "**/*.gen.ts"] + }, + "javascript": { + "formatter": { + "jsxQuoteStyle": "double", + "quoteProperties": "asNeeded", + "trailingCommas": "all", + "semicolons": "asNeeded", + "arrowParentheses": "always", + "bracketSpacing": true, + "bracketSameLine": false, + "quoteStyle": "single", + "attributePosition": "auto" + } + }, + "overrides": [{ "include": ["*.astro"] }] +} diff --git a/lefthook.yaml b/lefthook.yaml new file mode 100644 index 0000000..0b9be77 --- /dev/null +++ b/lefthook.yaml @@ -0,0 +1,6 @@ +pre-commit: + commands: + check: + glob: "*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}" + run: bunx @biomejs/biome check --write --no-errors-on-unmatched --files-ignore-unknown=true --colors=off {staged_files} + stage_fixed: true \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..dee45fc --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "boring.tools", + "scripts": { + "lint:apps": "bunx biome lint --write ./apps", + "lint:packages": "bunx biome lint --write ./packages", + "check:apps": "bunx biome check --write --config-path ./biome.json ./apps", + "check:packages": "bunx biome check --write --config-path ./biome.json ./packages", + "dev": "bun --filter '*' dev", + "build": "bun --filter '*' build" + }, + "packageManager": "bun@1.1.29", + "workspaces": [ + "apps/*", + "packages/*" + ], + "devDependencies": { + "@biomejs/biome": "1.8.3", + "lefthook": "^1.7.15" + } +} diff --git a/packages/.gitkeep b/packages/.gitkeep new file mode 100644 index 0000000..e69de29