diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..f4385d9 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v1 + with: + node-version: '23.x' + + - name: Install dependencies + run: npm install + + - name: Build Tailwind CSS + run: make tailwind \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5adeb61 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +src/style.css \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..241137e --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +input-css := ./src/input.css +output-css := ./src/style.css +tailwind-command := npx tailwindcss -i $(input-css) -o $(output-css) + +.PHONY: tailwind serve + +tailwind: + $(tailwind-command) + +tailwind-watch: + $(tailwind-command) --watch + +serve: + npx watch-http-server ./src \ No newline at end of file diff --git a/README.md b/README.md index f4fb7ed..5449e4e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# Tanjun +# TanjunSoftware.com Currently just a placeholder. diff --git a/index.html b/index.html deleted file mode 100644 index 5ed4a55..0000000 --- a/index.html +++ /dev/null @@ -1,29 +0,0 @@ - - -
- - - - -
+
+
+
+
+
+
+
+ A Slack Application to help manage and moderate your Slack channels.
+ Rapidly built C# application using the Slack API and Stripe integration.
+