Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/computate-org/computate_0ad
https://github.com/computate-org/computate_0ad
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/computate-org/computate_0ad
- Owner: computate-org
- Created: 2022-08-11T01:48:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-01T20:18:34.000Z (5 months ago)
- Last Synced: 2024-11-05T15:39:16.725Z (2 months ago)
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install the prerequisite applications
- https://github.com/computate-org/computate_wxwidgets
- https://github.com/computate-org/computate_enet
- https://github.com/computate-org/computate_miniupnpc
- https://github.com/computate-org/computate_curl
- https://github.com/computate-org/computate_libsodium
- https://github.com/computate-org/computate_gloox
- https://github.com/computate-org/computate_miniupnpc# Install the 0ad ansible role
```bash
# Create a directory for the ansible role.
install -d ~/.ansible/roles/computate.computate_0ad# Clone the 0ad ansible role.
git clone [email protected]:computate-org/computate_0ad.git ~/.ansible/roles/computate.computate_0ad# Change into the 0ad ansible role directory.
cd ~/.ansible/roles/computate.computate_0ad
```# Run the 0ad ansible playbook to install 0ad locally.
```bash
ansible-playbook install.yml
```# Set up firewall on each computer
```bash
# For example on your computer
sudo firewall-cmd --add-port=20595/udp --zone=trusted --permanent
sudo firewall-cmd --add-port=20595/udp --zone=trusted
sudo firewall-cmd --add-source 192.168.86.190/24 --zone trusted
sudo firewall-cmd --add-source 192.168.86.190/24 --zone trusted --permanent# For example on another computer
sudo firewall-cmd --add-port=20595/udp --zone=trusted --permanent
sudo firewall-cmd --add-port=20595/udp --zone=trusted
sudo firewall-cmd --add-source 192.168.86.37/24 --zone trusted
sudo firewall-cmd --add-source 192.168.86.37/24 --zone trusted --permanent
```