### Run Local Development Server Source: https://github.com/github/choosealicense.com/blob/gh-pages/README.md Start the Jekyll development server to preview the ChooseALicense.com site locally. Access it via http://localhost:4000. ```bash ./script/server ``` -------------------------------- ### Install Dependencies on Linux/Ubuntu Source: https://github.com/github/choosealicense.com/blob/gh-pages/README.md Use 'apt-get' to install 'make' and 'cmake' on Linux/Ubuntu systems. Requires superuser privileges. ```bash sudo apt-get install make cmake ``` -------------------------------- ### Install Dependencies on macOS Source: https://github.com/github/choosealicense.com/blob/gh-pages/README.md Use Homebrew to install 'make' and 'cmake' on macOS systems. Ensure Homebrew is installed first. ```bash brew install make cmake ``` -------------------------------- ### Clone Repository and Bootstrap Project Source: https://github.com/github/choosealicense.com/blob/gh-pages/README.md Clone the ChooseALicense.com repository recursively and run the bootstrap script. This prepares the project for local development. ```bash git clone https://github.com/github/choosealicense.com.git --recursive cd choosealicense.com ./script/bootstrap ```