Web application built using Laravel for Network Structures and Cloud Computing (CSYE6225) course in Fall 2020.
- PHP 7.2+
- PHP extensions: BCMath, Ctype, JSON, Mbstring, OpenSSL, PDO, Tokenizer, XML
- MySQL 5.6+
-
Clone the repository.
-
Use composer to install dependencies.
composer install- Create .env using .env.example file.
cp .env.example .env- Generate application key.
php artisan key:generate- Edit .env to configure database details.
DB_HOST=
DB_PORT=
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=- Run migrations.
php artisan migrate- Run local server (optional).
This command will start a development server at http://localhost:8000
php artisan serveNote: You may need to configure some permissions. Directories within the storage and the bootstrap/cache directories should be writable by your web server or application will not run
Unit & feature tests can be executed using the following command from your project directory:
./vendor/bin/phpunit
Deepansh Sachdeva (NUID 001399788)