2022-06-23 00:30:35 +02:00
|
|
|
#!/bin/sh
|
2023-03-08 11:32:40 +01:00
|
|
|
[ -e ./.env ] && . ./.env
|
2022-06-30 23:52:50 +02:00
|
|
|
|
2023-02-23 00:14:59 +01:00
|
|
|
python3 ../staticoso/App/Source/Build.py \
|
2022-06-24 22:30:45 +02:00
|
|
|
--SiteDomain="https://sitoctt.octt.eu.org" \
|
2022-12-24 16:17:26 +01:00
|
|
|
--FolderRoots="{'*':'https://octtspacc.gitlab.io', 'Assets':'https://sitoctt-assets.octt.eu.org'}" \
|
2023-02-01 13:07:12 +01:00
|
|
|
--DynamicParts="{'Foot':['Eruda.html']}" \
|
2022-11-07 00:19:51 +01:00
|
|
|
--MinifyOutput="False" \
|
|
|
|
--MinifyAssets="False" \
|
2022-08-13 22:39:10 +02:00
|
|
|
--GemtextHeader="\
|
|
|
|
# Spacc
|
2022-07-04 22:29:12 +02:00
|
|
|
|
2023-03-14 15:23:35 +01:00
|
|
|
" \
|
|
|
|
--MastodonURL="https://botsin.space" \
|
|
|
|
--MastodonToken="$MastodonToken;Debug=True" \
|
2023-03-23 23:43:53 +01:00
|
|
|
--ActivityPubHoursLimit="0" \
|
|
|
|
--GemtextOutput=True
|
2022-08-30 00:35:13 +02:00
|
|
|
#--DiffBuild="True" \
|
|
|
|
#--GemtextOutput=True #\
|
2022-07-01 17:53:36 +02:00
|
|
|
#--MastodonURL="https://botsin.space" \
|
|
|
|
#--MastodonToken="$MastodonToken"
|
2023-03-14 15:23:35 +01:00
|
|
|
|
|
|
|
sh ./Scripts/PostBuild.Common.sh
|