publish
This commit is contained in:
parent
92abfa3c89
commit
71009c551f
11 changed files with 2771 additions and 204 deletions
17
api/config.php
Normal file
17
api/config.php
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
// Pixel Island shared backend configuration.
|
||||
// Place this public_html folder as-is. SQLite DB is created under ../_data/ on first API access.
|
||||
return [
|
||||
'db_path' => dirname(__DIR__) . DIRECTORY_SEPARATOR . '_data' . DIRECTORY_SEPARATOR . 'pixel_island.sqlite',
|
||||
'world_width' => 144,
|
||||
'world_height' => 112,
|
||||
'max_assets_per_account' => 220,
|
||||
'max_world_objects' => 1000,
|
||||
'publish_limit_first_day' => 5,
|
||||
'publish_limit_trusted' => 10,
|
||||
'trusted_after_ms' => 24 * 60 * 60 * 1000,
|
||||
'max_json_bytes' => 5 * 1024 * 1024,
|
||||
// Set an arbitrary long token here if you use admin/index.php.
|
||||
// Example: 'admin_token' => 'change-this-long-random-string',
|
||||
'admin_token' => '',
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue