Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SE407-2017/campus-information-platform
https://github.com/SE407-2017/campus-information-platform
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/SE407-2017/campus-information-platform
- Owner: SE407-2017
- Created: 2017-10-08T18:58:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-09T07:31:29.000Z (about 7 years ago)
- Last Synced: 2024-05-22T19:31:43.579Z (9 months ago)
- Language: PHP
- Size: 22.1 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-scs - 2017 - 校园信息平台
README
# Campus-Information-Platform
![](https://img.shields.io/badge/build-passing-brightgreen.svg)
![](https://img.shields.io/badge/licence-Apache%202-blue.svg)
![](https://img.shields.io/badge/Powered%20by-Laravel-green.svg)## Requirements
* PHP >= 5.5.9
* Composer
* Mysql
* Npm## Installation
git clone https://github.com/SE407-2017/campus-information-platform
# front-end dependencies
cd frontend
npm install
# back-end dependencies
cd backend
composer install
php artisan key:generate(rename .env.example to .env)
## Quick Startcd frontend
npm run dev
cd backend
php -S 127.0.0.1:port
## Custom# Configure database
vim backend/config/database.phpDB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your database
DB_USERNAME=root
DB_PASSWORD=your password