This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <zabbix_export> | |
| <version>2.0</version> | |
| <date>2013-12-03T11:38:27Z</date> | |
| <groups> | |
| <group> | |
| <name>Templates</name> | |
| </group> | |
| </groups> | |
| <templates> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Run some pre commit checks on the Go source code. Prevent the commit if any errors are found | |
| echo "Running pre-commit checks on your code..." | |
| FILES=$(go list ./... | grep -v /vendor/) | |
| # Format the Go code | |
| go fmt ${FILES} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .DEFAULT_GOAL := default | |
| app_root = backend/app | |
| pkg_src = $(app_root)/app | |
| tests_src = $(app_root)/tests | |
| local_tests_src = $(app_root)/tests/local | |
| isort = isort -rc $(pkg_src) $(tests_src) | |
| black = black $(pkg_src) $(tests_src) | |
| flake8 = flake8 $(pkg_src) $(tests_src) | |
| mypy = mypy $(pkg_src) |
FreeSWITCH is a software defined telecom stack that runs on any commodity hardware. FreeSWITCH can handle voice, video and text communication and support all popullar VoIP protocols. FreeSWITCH is flexible and modular, and can be used in any way you can imagine
This guide demonstrates how to get it install FreeSWITCH and get it up and running on a Ubuntu 20.04 LTS machine
To follow along with this guide, you need one Ubuntu 20.04 LTS server which has prerequisite packages installed and configured. In order to install required packages issue following command