├── .github ├── FUNDING.yml └── workflows │ ├── docs_check.yml │ ├── docs_deploy.yml │ └── main.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── docs ├── advanced.md ├── camera.md ├── img │ ├── cncjs.png │ ├── cncjs_webcam_enable.png │ ├── cncjs_webcam_gear.png │ ├── cncjs_webcam_settings.png │ ├── favicon.ico │ ├── octoprint.png │ ├── psk.png │ ├── raspap.png │ ├── v1pi.png │ ├── windows_boot_partition.jpg │ ├── windows_dont_format.jpg │ ├── windows_open_with.jpg │ ├── windows_wpa_after.png │ └── windows_wpa_before.png ├── index.md ├── requirements.txt ├── setup.md ├── v1.css └── wifi.md ├── mkdocs.yml └── src ├── build_dist ├── config ├── custompios_path ├── docker ├── README.md └── run_docker_build.sh ├── image └── README ├── modules ├── cncjs │ ├── config │ ├── filesystem │ │ ├── home │ │ │ └── pi │ │ │ │ ├── .cncrc │ │ │ │ └── landingPage │ │ │ │ ├── serve.py │ │ │ │ ├── static │ │ │ │ ├── style.css │ │ │ │ └── v1engineering.png │ │ │ │ └── templates │ │ │ │ └── landingPage.html │ │ └── root │ │ │ └── etc │ │ │ ├── default │ │ │ ├── cncjs │ │ │ └── landingPage │ │ │ ├── haproxy │ │ │ ├── errors │ │ │ │ ├── 503-no-cncjs.http │ │ │ │ └── 503-no-landing.http │ │ │ └── haproxy.cfg │ │ │ └── init.d │ │ │ ├── cncjs │ │ │ └── landingPage │ └── start_chroot_script ├── nodejs │ ├── config │ └── start_chroot_script ├── octopi └── raspap │ ├── config │ └── start_chroot_script ├── vagrant ├── Vagrantfile ├── run_vagrant_build.sh └── setup.sh └── variants └── jessielite └── config /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docs_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/.github/workflows/docs_check.yml -------------------------------------------------------------------------------- /.github/workflows/docs_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/.github/workflows/docs_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/README.md -------------------------------------------------------------------------------- /docs/advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/advanced.md -------------------------------------------------------------------------------- /docs/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/camera.md -------------------------------------------------------------------------------- /docs/img/cncjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/cncjs.png -------------------------------------------------------------------------------- /docs/img/cncjs_webcam_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/cncjs_webcam_enable.png -------------------------------------------------------------------------------- /docs/img/cncjs_webcam_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/cncjs_webcam_gear.png -------------------------------------------------------------------------------- /docs/img/cncjs_webcam_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/cncjs_webcam_settings.png -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/octoprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/octoprint.png -------------------------------------------------------------------------------- /docs/img/psk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/psk.png -------------------------------------------------------------------------------- /docs/img/raspap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/raspap.png -------------------------------------------------------------------------------- /docs/img/v1pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/v1pi.png -------------------------------------------------------------------------------- /docs/img/windows_boot_partition.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/windows_boot_partition.jpg -------------------------------------------------------------------------------- /docs/img/windows_dont_format.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/windows_dont_format.jpg -------------------------------------------------------------------------------- /docs/img/windows_open_with.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/windows_open_with.jpg -------------------------------------------------------------------------------- /docs/img/windows_wpa_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/windows_wpa_after.png -------------------------------------------------------------------------------- /docs/img/windows_wpa_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/img/windows_wpa_before.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/v1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/v1.css -------------------------------------------------------------------------------- /docs/wifi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/docs/wifi.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /src/build_dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/build_dist -------------------------------------------------------------------------------- /src/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/config -------------------------------------------------------------------------------- /src/custompios_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/custompios_path -------------------------------------------------------------------------------- /src/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/docker/README.md -------------------------------------------------------------------------------- /src/docker/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/docker/run_docker_build.sh -------------------------------------------------------------------------------- /src/image/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/image/README -------------------------------------------------------------------------------- /src/modules/cncjs/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/config -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/home/pi/.cncrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/home/pi/.cncrc -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/home/pi/landingPage/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/home/pi/landingPage/serve.py -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/home/pi/landingPage/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/home/pi/landingPage/static/style.css -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/home/pi/landingPage/static/v1engineering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/home/pi/landingPage/static/v1engineering.png -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/home/pi/landingPage/templates/landingPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/home/pi/landingPage/templates/landingPage.html -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/root/etc/default/cncjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/root/etc/default/cncjs -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/root/etc/default/landingPage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/root/etc/default/landingPage -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/root/etc/haproxy/errors/503-no-cncjs.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/root/etc/haproxy/errors/503-no-cncjs.http -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/root/etc/haproxy/errors/503-no-landing.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/root/etc/haproxy/errors/503-no-landing.http -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/root/etc/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/root/etc/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/root/etc/init.d/cncjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/root/etc/init.d/cncjs -------------------------------------------------------------------------------- /src/modules/cncjs/filesystem/root/etc/init.d/landingPage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/filesystem/root/etc/init.d/landingPage -------------------------------------------------------------------------------- /src/modules/cncjs/start_chroot_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/cncjs/start_chroot_script -------------------------------------------------------------------------------- /src/modules/nodejs/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/nodejs/config -------------------------------------------------------------------------------- /src/modules/nodejs/start_chroot_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/nodejs/start_chroot_script -------------------------------------------------------------------------------- /src/modules/octopi: -------------------------------------------------------------------------------- 1 | ../../dependencies/OctoPi/src/modules/octopi -------------------------------------------------------------------------------- /src/modules/raspap/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/raspap/config -------------------------------------------------------------------------------- /src/modules/raspap/start_chroot_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/modules/raspap/start_chroot_script -------------------------------------------------------------------------------- /src/vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/vagrant/Vagrantfile -------------------------------------------------------------------------------- /src/vagrant/run_vagrant_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/vagrant/run_vagrant_build.sh -------------------------------------------------------------------------------- /src/vagrant/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffeb3/v1pi/HEAD/src/vagrant/setup.sh -------------------------------------------------------------------------------- /src/variants/jessielite/config: -------------------------------------------------------------------------------- 1 | BASE_IMAGE_ENLARGEROOT=250 2 | --------------------------------------------------------------------------------