Skip to content

freifunk/calcifer

 
 

Repository files navigation

calcifer

Requirements

  • PHP 8.0 or higher
  • Composer
  • SQLite (or another database supported by Doctrine)
  • Docker and Docker Compose (for MariaDB development environment)

Installation

  1. Clone the repository:

    git clone https://github.com/freifunk/calcifer.git
    cd calcifer
  2. Install PHP dependencies:

    composer install

Entwicklungsdatenbank mit MariaDB

  1. MariaDB-Container starten:

    docker compose up -d
  2. Datenbank-Schema erstellen:

    php bin/console doctrine:schema:create
  3. Wenn nötig, Datenbank-Container und Volumes löschen:

    docker compose down -v
  4. Status der Datenbank überprüfen:

    docker compose ps
  5. Direkte Verbindung zur Datenbank:

    docker compose exec database mysql -u app -p'!ChangeMe!' app

Initializing the Database (SQLite)

  1. Create the database schema:
    php bin/console doctrine:schema:create

Running Tests

  1. Run PHPUnit tests:
    ./vendor/bin/phpunit

Additional Commands

  • To clear the cache:

    php bin/console cache:clear
  • To run the development server:

    symfony server:start -d

    or

    php -S localhost:8000 -t public/ 

About

An event management tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 74.0%
  • Twig 18.7%
  • JavaScript 6.4%
  • CSS 0.9%