Ishad-M-I-M / world-wide-news

CS3022 - Software Engineering Project

Home Page:https://world-wide-news.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

World Wide News

CS 3022 - Software Engineering group project.

Versions used

  • PHP : 8.1
  • Composer : 2.3
  • MySQL server : 8.0

Steps to configure in local computer

  1. Clone the repository
  2. Navigate into the directory and run
composer install
  1. Create an .env by following .env.example file. Make sure to edit
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=

according to your mysql server configurations. Need to create a database manually in SQL server with name given for DB_DATABASE.
ADMIN properties given in .env will be used to generate admin account for the application.

ADMIN_NAME="Test User"
ADMIN_EMAIL="hello@example.com"
ADMIN_PASSWORD="password"
  1. Generate APP_KEY by
php artisan key:generate
  1. Generate tables in database with Migrations and run seeds for generate ADMIN account.
php artisan migrate
php artisan db:seed
  1. Start the application server & enjoy.
php artisan serve

Documentations

Built with :

Build Status Total Downloads Latest Stable Version License

About

CS3022 - Software Engineering Project

https://world-wide-news.herokuapp.com/

License:MIT License


Languages

Language:JavaScript 83.6%Language:CSS 12.0%Language:PHP 3.0%Language:Blade 1.4%Language:Shell 0.0%