rename .config to .config_example

This commit is contained in:
cremesk 2019-07-13 19:04:24 +02:00 committed by creme
parent 8de66fbc46
commit 2bf3700c5c
Signed by: creme
GPG Key ID: C147C3B7FBDF08D0
3 changed files with 12 additions and 12 deletions

10
.config
View File

@ -1,10 +0,0 @@
global_title="blog | ~newusername"
global_description="a blog about ~newusername"
global_author_url="https://envs.net/~newusername/"
global_url="https://envs.net/~newusername/blog"
global_author="~newusername"
#global_twitter_username=""
global_email="newusername@envs.net"
header_file=".header.template"
body_begin_file=".beforebody"
body_end_file=".afterbody"

10
.config_example Normal file
View File

@ -0,0 +1,10 @@
global_title="blog | ~username"
global_description="a blog about ~username"
global_author_url="https://envs.net/~username/"
global_url="https://envs.net/~username/blog"
global_author="~username"
#global_twitter_username=""
global_email="username@envs.net"
header_file=".header.template"
body_begin_file=".beforebody"
body_end_file=".afterbody"

View File

@ -4,12 +4,12 @@ install:
@echo Installing the executable to $(BINDIR)
@mkdir -p $(BINDIR)
@cp -f bb.sh $(BINDIR)/bb
@cp -f .config $(BINDIR)/bb_user_conf.tmpl
@cp -f .config_example $(BINDIR)/bb_user_config.tmpl
@chmod 755 $(BINDIR)/bb
uninstall:
@echo Removing the executable from $(BINDIR)
@rm -f $(BINDIR)/bb
@rm -f $(BINDIR)/bb_user_conf.tmpl
@rm -f $(BINDIR)/bb_user_config.tmpl
.PHONY: install uninstall