From 8cadf0cad69c0b3ac95fb3cdcf85a5f2df2f35c3 Mon Sep 17 00:00:00 2001 From: Tina_Azure <-> Date: Wed, 10 May 2023 23:11:39 +0200 Subject: [PATCH] minor spec changes add openssl as dependency and add a buildRun section to the make file --- Makefile | 5 +++++ spec/spec.md | 6 +++--- src/README.md | 1 + 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d536725..056f89f 100644 --- a/Makefile +++ b/Makefile @@ -31,3 +31,8 @@ release: clean: rm -r bin cavecomm + +buildRun: + clear + g++ $(INC) -o cavecomm $(SRCFILES) $(DEF) $(LIBS) + ./cavecomm src/default-cavecomm.conf \ No newline at end of file diff --git a/spec/spec.md b/spec/spec.md index 1c05914..d1e7f4b 100644 --- a/spec/spec.md +++ b/spec/spec.md @@ -161,13 +161,13 @@ passwordResetKey text expiration timestamp - the time at which the resetkey is unusable. -### "/freelancer/profile" ++++ "/freelancer/profile" Profile page collating freelancer pages. # HTML Templates -HTML Templates are the raw HTML that is used, and filled in, by variable data provided by the system. Templates should be wrote and saved on the file system of the hosting computer, and loaded upon start up. These loaded templates should be filled in with data provided by the system, then the assembled HTML should be given as a response to users. -The Templates should utilize purely lower-case variable names. +HTML Templates are the raw HTML that is used, and filled in, by variable data provided by the system. Templates should be writen and saved on the file system of the hosting computer, and loaded upon start up. These loaded templates should be filled in with data provided by the system, then the assembled HTML should be given as a response to users. +The Templates should utilize purely lower-case variable names and all upper case for system variables like errors. Generic template snippets that are used in multiple templates via {{> x}} are located in templateIncludes in the format {name}{type}.html # Payment Verification diff --git a/src/README.md b/src/README.md index 7789879..2dfd941 100644 --- a/src/README.md +++ b/src/README.md @@ -5,3 +5,4 @@ https://packages.debian.org/bullseye/libfmt-dev https://crowcpp.org Boost 1.81.0 https://github.com/jeremydumais/CPP-SMTPClient-library +OpenSSL