generated from CursedPrograms/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d2742c0
Showing
13 changed files
with
208 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
*.md linguist-vendored=false | ||
*.md linguist-generated=false | ||
*.md linguist-documentation=false | ||
*.md linguist-detectable=true | ||
|
||
*.json linguist-vendored=false | ||
*.json linguist-generated=false | ||
*.json linguist-documentation=false | ||
*.json linguist-detectable=true | ||
|
||
*.yml linguist-vendored=false | ||
*.yml linguist-generated=false | ||
*.yml linguist-documentation=false | ||
*.yml linguist-detectable=true | ||
|
||
*.ini linguist-vendored=false | ||
*.ini linguist-generated=false | ||
*.ini linguist-documentation=false | ||
*.ini linguist-detectable=true | ||
|
||
*.txt linguist-vendored=false | ||
*.txt linguist-generated=false | ||
*.txt linguist-documentation=false | ||
*.txt linguist-detectable=true | ||
|
||
*.svg linguist-vendored=false | ||
*.svg linguist-generated=false | ||
*.svg linguist-documentation=false | ||
*.svg linguist-detectable=true | ||
|
||
*.toml linguist-vendored=false | ||
*.toml linguist-generated=false | ||
*.toml linguist-documentation=false | ||
*.toml linguist-detectable=true | ||
|
||
*.xml linguist-vendored=false | ||
*.xml linguist-generated=false | ||
*.xml linguist-documentation=false | ||
*.xml linguist-detectable=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Auto Assign | ||
on: | ||
issues: | ||
types: [opened] | ||
pull_request: | ||
types: [opened] | ||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- name: 'Auto-assign issue' | ||
uses: pozil/auto-assign-issue@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
assignees: Farica-Kimora | ||
numOfAssignee: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Proof HTML | ||
on: | ||
push: | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: anishathalye/proof-html@v1.1.0 | ||
with: | ||
directory: ./ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 Cursed Entertainment | ||
|
||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<br> | ||
<div align="center"> | ||
<a href="https://ko-fi.com/cursedentertainment"> | ||
<img src="https://ko-fi.com/img/githubbutton_sm.svg" alt="ko-fi" style="width: 20%;"/> | ||
</a> | ||
</div> | ||
<br> | ||
|
||
<a href="https://github.com/CursedPrograms/project-template/actions/workflows/auto-assign.yml"> | ||
<img class="workflow-badge workflow-success" src="https://github.com/CursedPrograms/project-template/actions/workflows/auto-assign.yml/badge.svg" alt="Auto Assign Workflow"> | ||
</a> | ||
|
||
<a href="https://github.com/CursedPrograms/project-template/actions/workflows/proof-html.yml"> | ||
<img class="workflow-badge workflow-success" src="https://github.com/CursedPrograms/project-template/actions/workflows/proof-html.yml/badge.svg" alt="Proof HTML Workflow"> | ||
</a> | ||
|
||
# Project-Template | ||
|
||
<a href="https://cursed-entertainment.itch.io/" target="_blank"> | ||
<img src="https://github.com/CursedPrograms/cursedentertainment/raw/main/images/logos/logo-wide-grey.png" | ||
alt="CursedEntertainment Logo"> | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
@echo off | ||
REM Switch to a new orphan branch | ||
git checkout --orphan new_branch | ||
|
||
REM Stage all changes | ||
git add . | ||
|
||
REM Commit changes | ||
git commit -m "new_commit" | ||
|
||
REM Delete the old main branch | ||
git branch -D main | ||
|
||
REM Rename the new branch to main | ||
git branch -m main | ||
|
||
REM Force push to the remote main branch | ||
git push -f origin main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Switch to a new orphan branch | ||
git checkout --orphan new_branch | ||
|
||
# Stage all changes | ||
git add . | ||
|
||
# Commit changes | ||
git commit -m "new_commit" | ||
|
||
# Delete the old main branch | ||
git branch -D main | ||
|
||
# Rename the new branch to main | ||
git branch -m main | ||
|
||
# Force push to the remote main branch | ||
git push -f origin main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# Switch to a new orphan branch | ||
git checkout --orphan new_branch | ||
|
||
# Stage all changes | ||
git add . | ||
|
||
# Commit changes | ||
git commit -m "new_commit" | ||
|
||
# Delete the old main branch | ||
git branch -D main | ||
|
||
# Rename the new branch to main | ||
git branch -m main | ||
|
||
# Force push to the remote main branch | ||
git push -f origin main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[Section1] | ||
key1 = value1 | ||
key2 = value2 | ||
|
||
[Section2] | ||
key3 = value3 | ||
key4 = value4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"RootElement": { | ||
"ChildElement": ["0", "1"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<RootElement> | ||
<ChildElement>0</ChildElement> | ||
<ChildElement>1</ChildElement> | ||
</RootElement> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
++++++++++[>+>+++>+++++++>++++++++++<<<<-]>>>>-.++++++++++++++++++.---.+.--------------.-.<<+++++++++++++++.>>+.+++++++++.++++++.---------------.+++++++++++++.++.-------------------.++++++++.+++++.-.--------.+++++++++.++++++.<<+.>>-----------.+++++++++++.-----------------.+++++.<<.>>+.++++++. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | ||
<xsl:template match="/"> | ||
<html> | ||
<head> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f0f0f0; | ||
} | ||
.item { | ||
color: green; | ||
font-size: 18px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="item"> | ||
<xsl:value-of select="/data/item"/> | ||
</div> | ||
</body> | ||
</html> | ||
</xsl:template> | ||
</xsl:stylesheet> |