This repository has been archived on 2018-05-28. You can view files and clone it, but cannot push or open issues or pull requests.
BBB-Simple-ACS/server/acs

10 lines
222 B
PHP

#!/usr/bin/env php
<?php
ini_set('memory_limit', '512M');
require_once __DIR__ . '/constants.php';
require_once __DIR__ . '/vendor/autoload.php';
require_once __DIR__ . '/src/main.php';
use Acast\Server;
Server::start();