Skip to content
Snippets Groups Projects
Forked from Ad Aures / Castopod
1095 commits behind the upstream repository.
  • Yassine Doghri's avatar
    cbb83a6f
    feat: add npm for js dependencies + move src/ files to root folder · cbb83a6f
    Yassine Doghri authored
    - add node service in docker-compose.yml
    - update .devcontainer Dockerfile by adding node, npm and vim
    - init package.json for npm with tailwindcss, postcss, commitlint and commitizen as dev dependencies
    - update default layout main header and footer
    - replace CI's welcome_message.php with home.php listing all podcasts
    - add AUTHORS.md file
    - add docs folder in which to place castopod's technical documentation
    cbb83a6f
    History
    feat: add npm for js dependencies + move src/ files to root folder
    Yassine Doghri authored
    - add node service in docker-compose.yml
    - update .devcontainer Dockerfile by adding node, npm and vim
    - init package.json for npm with tailwindcss, postcss, commitlint and commitizen as dev dependencies
    - update default layout main header and footer
    - replace CI's welcome_message.php with home.php listing all podcasts
    - add AUTHORS.md file
    - add docs folder in which to place castopod's technical documentation
Routes.php 1.81 KiB
<?php namespace Config;

// Create a new instance of our RouteCollection class.
$routes = Services::routes();

// Load the system's routing file first, so that the app and ENVIRONMENT
// can override as needed.
if (file_exists(SYSTEMPATH . 'Config/Routes.php')) {
    require SYSTEMPATH . 'Config/Routes.php';
}

/**
 * --------------------------------------------------------------------
 * Router Setup
 * --------------------------------------------------------------------
 */
$routes->setDefaultNamespace('App\Controllers');
$routes->setDefaultController('Home');
$routes->setDefaultMethod('index');
$routes->setTranslateURIDashes(false);
$routes->set404Override();
$routes->setAutoRoute(false);
$routes->addPlaceholder('podcastName', '^@[a-z0-9\_]{1,191}$');

/**
 * --------------------------------------------------------------------
 * Route Definitions
 * --------------------------------------------------------------------
 */

// We get a performance increase by specifying the default
// route since we don't have to scan directories.
$routes->get('/', 'Home::index');
$routes->add('/podcasts/create', 'Podcasts::create');
$routes->add('/(:podcastName)', 'Podcasts::podcastByHandle/$1');

/**
 * --------------------------------------------------------------------
 * Additional Routing
 * --------------------------------------------------------------------
 *
 * There will often be times that you need additional routing and you
 * need to it be able to override any defaults in this file. Environment
 * based routes is one such time. require() additional route files here
 * to make that happen.
 *
 * You will have access to the $routes object within that file without
 * needing to reload it.
 */
if (file_exists(APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php')) {
    require APPPATH . 'Config/' . ENVIRONMENT . '/Routes.php';
}