b1ek 99184b9568 | ||
---|---|---|
.vscode | ||
config | ||
data/userdata | ||
docs | ||
helpers | ||
middleware | ||
migrations | ||
models | ||
public | ||
routes | ||
scripts | ||
test | ||
view | ||
.env.example | ||
.gitignore | ||
Dockerfile | ||
LICENSE.md | ||
README.md | ||
docker-compose.yml | ||
gulpfile.js | ||
index.js | ||
install | ||
nodemon.json | ||
package.json | ||
startup.js |
README.md
homepage.js
This is a rewrite of my current website to Express.JS.
Git repo | Demo (may or may not work)
Running an instance
Debug
cp .env.example .env
APP_DEBUG=true sudo ./install
docker-compose up -d
Production
Note: production instance is not production-ready yet, as it is still in development mode.
cp .env.example .env
echo "APP_DEBUG=false" >> .env # Or edit the file yourself
sudo ./install
docker-compose up -d