https://github.com/inter-mediator/imapp_simplebbs
Simple BBS Web Application with Using INTER-Mediator.
https://github.com/inter-mediator/imapp_simplebbs
Last synced: 4 months ago
JSON representation
Simple BBS Web Application with Using INTER-Mediator.
- Host: GitHub
- URL: https://github.com/inter-mediator/imapp_simplebbs
- Owner: INTER-Mediator
- License: mit
- Created: 2018-05-26T09:53:58.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-11T22:36:50.000Z (over 1 year ago)
- Last Synced: 2025-03-11T23:28:40.442Z (over 1 year ago)
- Language: PHP
- Size: 118 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IMApp_SimpleBBS
Simple BBS Web Application with Using INTER-Mediator.
This is a part of the hands-on session to study INTER-Mediator, but you don't have to work, and all codes are prepared on this repository. If you want to check the contents of the session, the url below is documentation (Japanase).
https://qiita.com/motofumi/items/57583c2b28d0d11a1a9d
# Preparation
Installing PHP, git, composer, MySQL and Node.js with npm.
The database has to be prepared with the following schema which is the sample db of the INTER-Mediator. If you already try to use the INTER-Mediator, this sample db has to be setup.
https://raw.githubusercontent.com/INTER-Mediator/INTER-Mediator/master/dist-docs/sample_schema_mysql.txt
# Setup
This web app based on the composer. So you clone this repository, following to execute the composer command on the root of the repository.
```
git clone https://github.com/inter-mediator/IMApp_SimpleBBS
cd IMApp_SimpleBBS
composer update
```
## Getting Started App
The quick way to host the web app, the php command's server mode is convenient.
```
php -S localhost:9000
```
After that, you can access the application with url http://localhost:9000/ from any browser that executing on the same host.