From c5d5d9eaee576834d897b53e45dc81b2944cd577 Mon Sep 17 00:00:00 2001 From: Michael Yick Date: Sun, 2 Apr 2023 21:13:54 -0500 Subject: [PATCH 1/2] improved template spec definition --- spec/spec.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spec/spec.md b/spec/spec.md index ea41bab..3a1d590 100644 --- a/spec/spec.md +++ b/spec/spec.md @@ -58,12 +58,13 @@ See the freelancer section under concepts for more information of what this shou ### /customer/$freelancer/template/$templateName -This will provide an HTML rendering of a Freelancer's posted template along with the ability to purchase the template. +Accessing this page will provide the customer with a rendered HTML document of a freelancer's job template. This rendering will take data that the freelancer provides for the job, ideally stored in the database, and fills it in for delivery to the customer. The job template should use a html template that the system administrator provides for filling in. + +The template provided should include an HTML form that submits information required in `"/customer/$freelancer/template/$templateName/request"` to `"/customer/$freelancer/template/$templateName/request"`. This is not necessary, for flexability reasons, but will be the system Cavemanon uses for their commission requests. ### "/customer/$freelancer/template/$templateName/request" A customer who wishes to request a freelancer with an open template must provide an email address, a name, and a description. Optionally, the user may provide auxiliary contact information (such as a Discord account, a Skype account, a Matrix account, a Github account, etc.). - This information should be stored in a database of commission requests. A request should also be emailed out to the freelancer. ## Freelancer From fe23d47338886425a7d2f89fd2b3a049a556846d Mon Sep 17 00:00:00 2001 From: Michael Yick Date: Sun, 2 Apr 2023 21:16:03 -0500 Subject: [PATCH 2/2] Remove woodpecker CI content TODO: revamp the CI/CD system to use the C++ build system --- .woodpecker.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml deleted file mode 100644 index a4343f6..0000000 --- a/.woodpecker.yml +++ /dev/null @@ -1,17 +0,0 @@ -pipeline: - build: - image: alpine - commands: - - ./gradlew build - -# release: -# image: woodpeckerci/plugin-gitea-release:latest -# settings: -# base_url: https://git.snootgame.xyz -# api_key: ${ReleaseSmithAPIKey} -# files: dist/* -# title: ${CI_COMMIT_TAG} -# prerelease: true -# when: -# tag: tag -# branch: master