From 52accbb5afa9daac5fea9ad98fbc652ca824ff05 Mon Sep 17 00:00:00 2001 From: George Lemon Date: Tue, 22 Aug 2023 22:41:27 +0300 Subject: [PATCH] Initial commit --- .github/workflows/docs.yml | 39 ++++++++++++++++++++++++++++++++++++++ .github/workflows/test.yml | 30 +++++++++++++++++++++++++++++ .gitignore | 3 +++ LICENSE | 21 ++++++++++++++++++++ README.md | 28 +++++++++++++++++++++++++++ 5 files changed, 121 insertions(+) create mode 100644 .github/workflows/docs.yml create mode 100644 .github/workflows/test.yml create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..eb7b64f --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,39 @@ +name: docs +on: + push: + tags: + - '*.*.*' + # branches: + # - main +env: + nim-version: 'stable' + nim-src: src/${{ github.event.repository.name }}.nim + deploy-dir: .gh-pages +jobs: + docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: jiro4989/setup-nim-action@v1 + with: + nim-version: ${{ env.nim-version }} + - run: nimble install -Y + - run: nim doc --index:on --project --path:. --out:${{ env.deploy-dir }} ${{ env.nim-src }} + + - name: "Rename to index.html" + run: mv ${{ env.deploy-dir }}/${{ github.event.repository.name }}.html ${{ env.deploy-dir }}/index.html + + - name: "Find and replace (index.html)" + run: sed -i 's/${{ github.event.repository.name }}.html/index.html/g' ${{ env.deploy-dir }}/index.html + + # - name: "Find and replace (idx)" + # run: sed -i 's/${{ github.event.repository.name }}.html/index.html/g' ${{ env.deploy-dir }}/${{ github.event.repository.name }}.idx + + - name: "Find and replace (theindex.html)" + run: sed -i 's/${{ github.event.repository.name }}.html/index.html/g' ${{ env.deploy-dir }}/theindex.html + + - name: Deploy documents + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ${{ env.deploy-dir }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..2677b42 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,30 @@ +name: test +on: + push: + paths-ignore: + - LICENSE + - README.* + - examples + - .github/workflows + pull_request: + paths-ignore: + - LICENSE + - README.* + - examples + - .github/workflows +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + nim-version: + - 'stable' + steps: + - uses: actions/checkout@v3 + - uses: jiro4989/setup-nim-action@v1 + with: + nim-version: ${{ matrix.nim-version }} + repo-token: ${{ secrets.GITHUB_TOKEN }} + - run: nimble install -Y + - run: nim c -r src/${{ github.event.repository.name }}.nim + - run: nimble test diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..32e1dc0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +nimcache/ +nimblecache/ +htmldocs/ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..52d5d28 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Supranim + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..194348b --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +

+
Supranim template for developing cool packages & libraries.
👑 Written in Nim language +

+ +

+ nimble install {PKG} +

+ +

+ API reference
+ Github Actions Github Actions +

+ +## 😍 Key Features +- + +## Examples +... + +### ❤ Contributions & Support +- 🐛 Found a bug? [Create a new Issue](https://github.com/supranim/temple/issues) +- 👋 Wanna help? [Fork it!](https://github.com/supranim/temple/fork) +- 😎 [Get €20 in cloud credits from Hetzner](https://hetzner.cloud/?ref=Hm0mYGM9NxZ4) +- 🥰 [Donate via PayPal address](https://www.paypal.com/donate/?hosted_button_id=RJK3ZTDWPL55C) + +### 🎩 License +{PKG} | MIT license. [Made by Humans from OpenPeeps](https://github.com/openpeeps) for Supranim
+Copyright © 2023 Supranim | OpenPeeps & Contributors — All rights reserved.