siongui / vinaya-bmc-zh

佛教修道準則(Buddhist Monastic Code)

Home Page:https://siongui.github.io/vinaya-bmc-zh/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

佛教修道準則(Buddhist Monastic Code)

image

Development Tool: Pelican (static site generator written in Python)

Development Environment: Ubuntu 22.04

First-time Setup

  1. On a fresh/clean installation of Ubuntu, update system first. Otherwise will get unable to locate package error. See this SO answer.

    $ sudo apt-get update
  2. Install git and pip:

    $ sudo apt-get install git
    $ sudo apt-get install python3-pip

    From the answer in Ask Ubuntu, we can use python-is-python3 and prevent Python 2 from being installed on Ubuntu 20.04

    $ sudo apt-get install python-is-python3
    $ sudo apt-mark hold python2 python2-minimal python2.7 python2.7-minimal libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib
  3. Install language packages to add locale (English, Traditional Chinese, and Thai in this example):

    $ sudo apt-get install language-pack-en
    $ sudo apt-get install language-pack-zh-hant
    $ sudo apt-get install language-pack-th

    Or you can install languages in "Settings" -> "Region & Language", which installs more related packages such as fonts for languages.

  4. git clone source code:

    $ cd
    $ mkdir dev
    $ cd ~/dev/
    $ git clone https://github.com/siongui/vinaya-bmc-zh.git --depth=1
    # or clone with full depth
    $ git clone https://github.com/siongui/vinaya-bmc-zh.git YOUR_REPO
  5. Install Python tools:

    $ cd ~/dev/YOUR_REPO/
    $ pip3 install -r requirements.txt
  6. Install Pelican i18n_subsites plugin:

    $ cd ~/dev/YOUR_REPO/
    $ make download
  7. Generate CSS file:

    $ cd ~/dev/YOUR_REPO/
    $ make scss

Daily Development

# start edit and develope
$ cd ~/dev/YOUR_REPO/
# re-generate the website and start dev server
$ make
# open your browser and preview the website at http://localhost:8000/

References

About

佛教修道準則(Buddhist Monastic Code)

https://siongui.github.io/vinaya-bmc-zh/


Languages

Language:HTML 40.1%Language:Python 37.3%Language:Makefile 18.5%Language:SCSS 3.7%Language:JavaScript 0.4%