From 239314da5c4af9d4471ccba431fc6267d313bea3 Mon Sep 17 00:00:00 2001 From: Damillora Date: Sun, 9 Feb 2020 15:20:46 +0700 Subject: [PATCH] Add simple README --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..47e7057 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# BlueFire + +## Project Contents + +- /api + + The backend of the BlueFire website, written in PHP and CodeIgniter + +- /frontend + + The frontend of the BlueFire website, written in JavaScript and Vue + +## Dependencies + +- A web server with PHP 5.6 + +- Microsoft SQL Server + +## Installation + +1. Download the repository, either using `git clone` or downloading as a ZIP file + +2. Open the repository, and copy the entire contents of the repository to the web-root of your server. + +3. Start up SQL Server, and run the schema in `BlueFireDB.sql` + +## Frontend Development + +``` +cd frontend +yarn install +yarn serve # Test out the frontend +yarn build # Build the frontend +cp dist/* ../ # Copy the frontend build files to root of the project +```