ras-pi

A comprehensive, end-to-end guide to the fundamentals of coding, network protocols, Linux, and the Raspberry Pi.

Getting Started

Run the following commands on a fresh installation on a Raspberry Pi: ``` sudo apt install git; git clone https://github.com/SLCPL-CreativeLab/ras-pi; cd ras-pi/scripts; sudo chmod a+x install.sh; sudo ./install.sh; # If you want to expose services to the internet, run this command as well. sudo ./cloudflared.sh; ```

Expose Services to the Internet

To enable cloudflared to expose services to the internet, you must:
To temporarily expose a single service to the internet, use this command: `cloudflared tunnel --url=http://localhost:PORT`, where PORT is the service you'd like to expose. The ports used with the standard services are:
See `cloudflared.md` for more information.