Home - GodStorm91/Attendize GitHub Wiki

Vietprojp Events

This is website for events organized by Vietpro, customized based on open source Attendize

Development

Prerequisites

Setup local environment

  • Create .env from .env.example

    cp .env.example .env
    
  • Append config for KOMOJU_MERCHANT_UUID into .env

    KOMOJU_MERCHANT_UUID=xxxxxxxxx
    
  • Start docker-compose and follow instructions in Attendize

    docker-compose up -d
    

    After that webserver is ready on localhost port 8080 and phpmyadmin is on port 8088

  • Open phpmyadmin in http://localhost:8088

  • Execute SQL to insert Komoju into payment_gateways table

    INSERT INTO `payment_gateways`(`id`, `provider_name`, `provider_url`, `is_on_site`, `can_refund`, `name`) 
    VALUES (5, 'komoju', 'https://komoju.com', '0', '0', 'Komoju')
    

Release