commit dd35e9131b91daf9a973d46512d2bd239424c6bf Author: Aravinth Manivannan Date: Sat Jan 14 12:55:06 2023 +0530 feat: init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..871ace1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +public/ +bin/ +tmp +*~ diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..4bc7577 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,10 @@ +pipeline: + build: + image: python + when: + event: [ push, pull_request, tag, deployment ] + commands: + - make env + - make + - make ci-deploy + secrets: [ GITEA_WRITE_DEPLOY_KEY, LIBREPAGES_DEPLOY_SECRET ]