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.
- Host: GitHub
- URL: https://github.com/techreagan/appidea
- Owner: techreagan
- Created: 2018-10-29T12:31:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-01T14:58:09.000Z (almost 6 years ago)
- Last Synced: 2025-02-21T20:31:46.735Z (over 1 year ago)
- Topics: htaccess, html-css-javascript, mysql, php, php-framework, php7
- Language: PHP
- Homepage:
- Size: 73.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)