Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.
/ hub.gcc Public archive

[DEPRICATED]A vue sinlge page application used for creating glory city church hub system

Notifications You must be signed in to change notification settings

gccdevs/hub.gcc

Repository files navigation

About

This project is to create a central hub system for glory city church.

Installation

  1. Create .env by running vi .env if you already have vi or vim installed, then:

    • Copy from the sample from .env.sample

    • Modify the database configuration to your database connection

    • Add Stripe Keys if payment is needed

  2. Install packages and dependencies:

    composer install
    

    If you don't have composer installed, check here.

    And then install npm dependencies by running:

    npm install
    

    If you don't have npm installed, please check here.

    Sometimes, delete node_modules, vendor, package-lock.json and composer.lock before install.

  3. Create API_KEY by running:

    php artisan key:generate
    
  4. Migrate the database:

    php artisan migrate
    
  5. Start the app and see the application in http://127.0.0.1:8000:

    php artisan serve
    

    Or use valet, a virtual host, to run in custom domain, eg: myproject.dev

Optional Setup

  1. Create dummy data:

    php artisan db:refresh
    
  2. Queue email tasks:

    1. Change the QUEUE_DRIVE setting in .env file

      QUEUE_DRIVER=database
      
    2. Modify the mail settings in .env file, the example is using gmail:

      MAIL_DRIVER=smtp
      MAIL_HOST=smtp.gmail.com
      MAIL_PORT=587
      [email protected]
      MAIL_PASSWORD=example
      MAIL_ENCRYPTION=tls
      [email protected]
      MAIL_FROM_NAME="GCC Central Hub"
      

      Remember for APP_NAME or MAIL_FROM_NAME in .env, include the " " to the name you gave.

    3. Run queue listen or queue work

      php artisan work
      php artisan work --tries=4 // with max attempts of four 
      
  3. Invitation token schedulling refresh:

    1. Server development (Linux or Homestead), In order to run schedule properly every given timeframe, execute:

      * * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1
      
    2. Mac Development Environment, In order to run schedule properly every given timeframe, open a new tab with same root directory of the project and run:

      while true; do php artisan schedule:run; sleep 60; done
      

Deployment on Heroku

  • Create a Procfile file and add two lines to allocate dynos:

      web: vendor/bin/heroku-php-apache2 public/
      queue: php artisan queue:work --tries=3 --daemon
    

    web used for indicating where to serve the application. queue is used to allocate a queue to send email tasks.

  • Install ClearDB addon.

    The Addon can be installed either from cli or dashboard panel.

  • Add ClearDB config at the start of config/database.php in Laravel:

    <? php
    
    // Production on  Heroku configs
    $url = parse_url(getenv("CLEARDB_DATABASE_URL"));
    
    $host = $url["host"];
    $username = $url["user"];
    $password = $url["pass"];
    $database = substr($url["path"], 1);
    
    
  • Replace the default mysql connection inconfig/database.php with the followings:

    'mysql' => [
        'driver'    => 'mysql',
        'host'      => $host,
        'database'  => $database,
        'username'  => $username,
        'password'  => $password,
        'charset'   => 'utf8',
        'collation' => 'utf8_unicode_ci',
        'prefix'    => '',
        'strict' => true,
        'engine' => null,
    ],
    
  • Run in production mode (if deployed in heroku directly using github repo), so run:

    npm run prod
    

    Also, set config var APP_ENV to production in heroku dashboard panel or using cli.

SSL and HTTPS redirection

  1. Purchase SSL with your domain provider or with Heroku.
  2. Set up HTTPS protocol in laravel. See detail insturctions here.
  3. Set trusted proxies to all. See instructions here