https://github.com/schemar/club-list
A Symfony-based member directory for clubs
https://github.com/schemar/club-list
club-management php symfony-application
Last synced: 11 months ago
JSON representation
A Symfony-based member directory for clubs
- Host: GitHub
- URL: https://github.com/schemar/club-list
- Owner: schemar
- License: mit
- Created: 2017-12-16T12:36:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-16T12:47:20.000Z (over 8 years ago)
- Last Synced: 2025-07-14T11:01:54.096Z (12 months ago)
- Topics: club-management, php, symfony-application
- Language: PHP
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Club List
Club List is a Symfony-based web application for clubs.
It is a member directory.
## Features
- Listing, sorting, and filtering members
- Member profiles with detailed information
- Setting up custom member statuses
- Invite-only registration
## Set-Up
### Prerequisites
- Web server and PHP process manager (e.g. niginx and php-fpm)
- PHP
- APCu
- MariaDB (or MySQL)
### Development Set-Up
Clone and configure the project
```
git clone git@github.com:schemar/simplest-weather-app.git
cd club-list
composer install
composer dump-autoload --optimize
php app/console doctrine:migrations:migrate
php app/console app:setup
php app/console server:run
```
- Set all required parameters.
- Open `127.0.0.1:8000` in your browser.
### Production Set-Up
Clone and configure the project
```
git clone git@github.com:schemar/simplest-weather-app.git
cd club-list
composer install
composer dump-autoload --optimize
php app/console doctrine:migrations:migrate
php app/console app:setup
```
- Set all required parameters.
- Make sure you use a good secret!
- Create a favicon at `web/favicon.ico`.
Set-up your web server and php process manager.