csus190teamtbd / SeniorProject

https://www.csus.edu/faculty/d/rdiaz/savis/
5 stars 0 forks source link

SAVIS

Dependencies

Running a Dev Server

Without Webpack

$ JEKYLL_ENV=development bundle exec jekyll serve

With Webpack

In three separate terminals:

$ bundle exec jekyll build -w
$ TARGET_DIR=_site npx webpack -w
$ cd _site && python3 -m http.server 4000

Building for Production (Web)

$ bash buildRelease.sh web

Building for Production (Exe)

$ bash buildRelease.sh exe
$ npm run package-linux
$ npm run package-mac
$ npm run package-win