An open API service indexing awesome lists of open source software.

https://github.com/titomiguelcosta/harvestberries

Ansible recipes to deploy on a Raspberry Pi
https://github.com/titomiguelcosta/harvestberries

Last synced: 3 months ago
JSON representation

Ansible recipes to deploy on a Raspberry Pi

Awesome Lists containing this project

README

        

# RaspberryPi Setup

Ansible recipes to install on a Raspberry Pi

## Dependencies

Make sure you have [ansible](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html) 2.9+

```
$ ansible --version
ansible 2.9.10
```

Tested for Raspbian GNU/Linux 10 (buster).

## Configuration

Create an entry on ~/.ssh/config pointing to your raspberry pi

```
Host pi
HostName 192.168.1.66
User pi
```

## Software

* Pyenv
* PHP
* Golang
* ngrok

## Execute

To apply all the roles, execute

```
$ ansible-playbook -i hosts main.yml
```