| commit | d32cf13634d63fddd4def75b6d74756281a622cf | [log] [tgz] |
|---|---|---|
| author | PJ Fanning <pjfanning@users.noreply.github.com> | Tue Nov 11 17:23:46 2025 +0100 |
| committer | GitHub <noreply@github.com> | Wed Nov 12 01:23:46 2025 +0900 |
| tree | dfd31ff09c34794938ecfa92c098922a47d671bd | |
| parent | 77e194a794d0d95ed6d304de0d3010f6c0947e03 [diff] |
Add deployment considerations for Zeppelin security (#34) * Add deployment considerations for Zeppelin security Added a section on deployment considerations for Zeppelin servers, including access control and resource limitations. * Update security.md Co-authored-by: Arnout Engelen <arnout@engelen.eu> --------- Co-authored-by: Jongyoul Lee <jongyoul@gmail.com> Co-authored-by: Arnout Engelen <arnout@engelen.eu>
This readme will walk you through building the Zeppelin website
Follow these steps to set up and run the development environment:
1. Clone the Repository
$ git clone <repository-url> $ cd <repository-directory>
2. Ensure Docker is Running:
Make sure Docker is installed and running on your machine. Below is an example how.
$ open -a Docker
3. Build the Docker Image:
$ ./zeppelin-site.sh --build-image
4. Run the Development Server:
$ ./zeppelin-site.sh
5. Open the Website:
Open your web browser and go to http://localhost:4000 or http://127.0.0.1:4000.
$ rake page name="new-page.md"
Follow these steps to build the production site:
1. Build the Production Site:
$ ./zeppelin-site.sh --build-dist
2. The built site will be available in the _site directory.
Ensure all dependencies are correctly listed and installed.
If you encounter issues, you may need to run:
$ docker run --rm -it -v "$(pwd):/app" zeppelin-site-dev:latest /bin/bash $ bundle install
Dockerfile and Gemfile Adjustments: