commit b55ae1223ca8a02b86a87af90be5d2545a13f6d0
parent a5a978b8a720200b028146878e4838591180b576
Author: Hugo Soucy <hugo@soucy.cc>
Date: Tue, 6 Jun 2017 21:13:13 -0400
Modify config files with a new shebang
Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/config/app.cfg b/config/app.cfg
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
# FakeStache SSG configuration file
export NOW_DATE="$(date +%Y-%m-%d)"
diff --git a/config/preprocessor.cfg b/config/preprocessor.cfg
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
# Preprocessor Configuration File
diff --git a/config/site.cfg b/config/site.cfg
@@ -1,10 +1,10 @@
-#!/bin/bash
+#!/usr/bin/env bash
# FakeStache SSG configuration file
# Site configuration file
export SITE_DOMAINNAME="hugo.soucy.cc"
export SITE_URL="http://${SITE_DOMAINNAME}"
-export SITE_PORT_DEV=8181
+export SITE_PORT_DEV=8080
export SITE_URL_DEV="http://localhost:8181"
export SITE_LANGUAGE="fr"