Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .github/workflows/golang-workflow.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/kube-workflow-init.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ on:
jobs:
init:
# Use a released version for stable.
uses: kerthcet/github-workflow-as-kube/.github/workflows/workflow-as-kubernetes-init.yaml@main
uses: kerthcet/github-workflow-as-kube/.github/workflows/workflow-as-kubernetes-init.yaml@v0.1.21
secrets:
AGENT_TOKEN: ${{ secrets.AGENT_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/kube-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ on:
jobs:
event-handler:
# Use a released version for stable.
uses: kerthcet/github-workflow-as-kube/.github/workflows/workflow-as-kubernetes.yaml@main
uses: kerthcet/github-workflow-as-kube/.github/workflows/workflow-as-kubernetes.yaml@v0.1.21
secrets:
AGENT_TOKEN: ${{ secrets.AGENT_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ __pycache__
*.pyc
.pytest_cache
*.tgz
dist
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

.PHONY build:
build:
poetry build

publish: build
poetry publish
4 changes: 2 additions & 2 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
approvers:
- TBD
- kerthcet

reviewers:
- TBD
- kerthcet
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# template-repo
# AlphaTrion

A template repo.
**AlphaTrion** is an open-source and all-in-one platform to build AI-powered applications. Still under development, join us on this exciting journey!
Empty file added alphatrion/__init__.py
Empty file.
2 changes: 2 additions & 0 deletions alphatrion/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
if __name__ == "__main__":
print("Hello, AlphaTrion!")
14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[project]
name = "alphatrion"
version = "0.0.1"
description = "AlphaTrion is an open-source and all-in-one platform to build AI-powered applications."
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
]


[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"