https://github.com/zeevolution/coalition-skills-test
Set up a Laravel site and make some basic changes to it for the Coalition's Laravel skills test.
https://github.com/zeevolution/coalition-skills-test
Last synced: 21 days ago
JSON representation
Set up a Laravel site and make some basic changes to it for the Coalition's Laravel skills test.
- Host: GitHub
- URL: https://github.com/zeevolution/coalition-skills-test
- Owner: zeevolution
- Created: 2018-03-27T19:32:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-27T19:54:28.000Z (over 8 years ago)
- Last Synced: 2026-06-07T21:25:49.903Z (21 days ago)
- Language: PHP
- Size: 2.75 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Here you'll find proper instructions for the steps to set up the System Project.>
## Requirements
- Laravel Requirements:
- PHP >= 7.1.*
- [Composer](https://getcomposer.org/download/) latest version: a PHP dependency manager.
- Make composer to be global. If running on Ubuntu, run:
- mv composer.phar /user/local/bin/composer
- MySQL: version >= 5.7.19
- [NodeJS & NPM](https://nodejs.org/en/): version >= 6.11
## Fresh Installation
- **Download BasisComply Project Repository:**
- git clone https://github.com/joselimaneto/coalition-skills-test
- **Install all PHP composer dependencies:**
- composer install
- **Creating Environment File:**
- copy .env.example .env (use cp or copy)
- **Generate Laravel Key and Voyager Instalation**
- php artisan key:generate
- php artisan voyager:install
- **Open .env file and modify databases details with server's database info.**
- **Install NPM dependencies by running:**
- npm install
- **Compile Assets by running:**
- npm run dev (for development)
- npm run prod (for production)
- npm run watch (for watching assets changes during development)
- See the package.json for more webpack compilation options.
- **Run migration for table and data creation:**
- php artisan migrate
- **Run the Laravel API project:**
- php artisan serve --host localhost --port 8000
- **localhost can be the server's IP address**
## License
- The Laravel framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).