minor spec changes add openssl as dependency and add a buildRun section to the make file

This commit is contained in:
Tina_Azure
2023-05-10 23:11:39 +02:00
parent 3db69a2d6c
commit 8cadf0cad6
3 changed files with 9 additions and 3 deletions

View File

@ -31,3 +31,8 @@ release:
clean:
rm -r bin cavecomm
buildRun:
clear
g++ $(INC) -o cavecomm $(SRCFILES) $(DEF) $(LIBS)
./cavecomm src/default-cavecomm.conf

View File

@ -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

View File

@ -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