Skip to content

Latest commit

 

History

History
17 lines (17 loc) · 560 Bytes

README.md

File metadata and controls

17 lines (17 loc) · 560 Bytes

yaffect-backend

This is the REST backend for the Yaffect Android application. To test this project locally with a database, you have to include a file named config.php containing information about the database connection, for example:

<?php
return array(
  'hostname' => '[hostname]',
  'username' => '[username]',
  'password' => '[password]',
  'database' => '[database-name]',
  'url_oauth2' => '[url]',
  'client_id' => '[client_id]',
  'client_secret' => '[client_secret]',
  'debug' => true
);
?>