Skip to content

garasijogi/mamoto-website

Repository files navigation

Build Status

Total Downloads

Latest Stable Version

License

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:

Laravel is accessible, powerful, and provides tools required for large, robust applications.

Initial Guide

Before you start to develop this website, please do some commands below and please do it in order:

NOTE: if there is a question to overwrite existing files or config, please answer NO

  1. Install Composer Packages
composer install
  1. Install npm packages and apply its packages
npm install && npm run dev
  1. run adminlte artisan install and plugin's install
php artisan adminlte:install && php artisan adminlte:plugins install
  1. copy .env.example and rename it to .env, then set it with your own local environment.
  2. run artisan generate app key
php artisan key:generate
  1. run this command to add laravel storage link
php artisan storage:link
  1. start your database engine(mysql/postgresql) on your system, create database named mamotodb, and then run this command to migrate the database and seed it
php artisan migrate && php artisan db:seed
  1. And done.