https://github.com/constracti/individual-championships-server
Collect participations for individual championships organizations.
https://github.com/constracti/individual-championships-server
Last synced: 4 months ago
JSON representation
Collect participations for individual championships organizations.
- Host: GitHub
- URL: https://github.com/constracti/individual-championships-server
- Owner: constracti
- Created: 2025-07-03T14:26:38.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-09-02T16:07:56.000Z (10 months ago)
- Last Synced: 2025-09-02T18:09:30.763Z (10 months ago)
- Language: PHP
- Homepage: https://atomika.agonistes.gr
- Size: 43 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Individual Championships Server
Collect participations for individual championships organizations.
## Installation
Create a `config.php` in this directory.
Define the appropriate PHP constants, as in the following example:
```php
/**
* Where the json files will be saved.
* The directory should NOT be visible to the public.
*/
define( 'PATH', '../json' );
/**
* Google reCAPTCHA v3 keys.
* Documentation about Google reCAPTCHA can be found here:
* https://developers.google.com/recaptcha
*/
define( 'RECAPTCHA_SITE_KEY', 'YOUR PUBLIC KEY' );
define( 'RECAPTCHA_SECRET_KEY', 'YOUR SECRET KEY' );
```