forked from enwikipedia-acc/waca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
28 lines (21 loc) · 913 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/******************************************************************************
* Wikipedia Account Creation Assistance tool *
* ACC Development Team. Please see team.json for a list of contributors. *
* *
* This is free and unencumbered software released into the public domain. *
* Please see LICENSE.md for the full licencing statement. *
******************************************************************************/
namespace Waca;
use Waca\Router\PublicRequestRouter;
/*
* Public interface script
*
* THIS IS AN ENTRY POINT
*/
require_once('includes/Startup.php');
global $siteConfiguration;
$application = new WebStart($siteConfiguration, new PublicRequestRouter());
// This is a public interface
$application->setPublic(true);
$application->run();