Skip to content

fogleins/siofok-web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dependencies

A file named config.php containing credentials for database- and Google login handling is needed in the project root.

Example:

<?php
    session_start();
    // Google OAuth credentials
    require_once "vendor/autoload.php";
    $gClient = new Google_Client();
    $gClient->setClientId("your-client-id-here");
    $gClient->setClientSecret("your-client-secret-here");
    $gClient->setApplicationName("your-application-name-here");
    $gClient->setRedirectUri("http://localhost/auth.php");
    $gClient->addScope(["https://www.googleapis.com/auth/userinfo.email",
                        "https://www.googleapis.com/auth/userinfo.profile"]);

    // MariaDB/MySQL credentials
    const DB_SERVER = "localhost";
    const DB_USERNAME = "db-username";
    const DB_PASSWORD = "db-password";
    const DB_NAME = "db-name";

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published