An open API service indexing awesome lists of open source software.

https://github.com/techreagan/appidea

AppIdea allows users to store their project ideas, to avoid forgetting. Built with Boss PHP mini Framework.
https://github.com/techreagan/appidea

htaccess html-css-javascript mysql php php-framework php7

Last synced: about 2 months ago
JSON representation

AppIdea allows users to store their project ideas, to avoid forgetting. Built with Boss PHP mini Framework.

Awesome Lists containing this project

README

          

# App Idea

It's a simple web app that store users ideas, to avoid been forgetten.

## Installation
Import the appidea.sql to your mysql database

### Configuration File

Modify the app/config/config.php file according to your needs.

``` PHP
//Database Configuration
define('DB_HOST', '_YOUR_HOST');
define('DB_USER', '_YOUR_DATABSE_USERNAME');
define('DB_PASS', '_YOUR_DATABASE_PASSWORD');
define('DB_NAME', '_YOUR DATABASE_NAME');
// App Root
define('APPROOT', dirname(dirname(__FILE__)));
// URL Root
define('URLROOT', '_YOUR_URL_');
// Site Name
define('SITENAME', '_YOUR_SITENAME_');
```

### Htaccess file

Modify the .htaccess file inside the public folder to match the name of your installation folder, Modify only the RewriteBase.

```

Options -Multiviews
RewriteEngine On
RewriteBase /boss/public
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]

```

## Development
Built with [Boss PHP mini Framework](https://github.com/techreagan/Boss)