garasijogi / mamoto-website

Mamoto's Website Source Code.
Apache License 2.0
1 stars 0 forks source link
artisan css database html javascript laravel laravel-adminlte laravel-framework laravel-mix laravel-ui-adminlte laravel7x php webpack

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
  2. Install npm packages and apply its packages
    npm install && npm run dev
  3. run adminlte artisan install and plugin's install
    php artisan adminlte:install && php artisan adminlte:plugins install
  4. copy .env.example and rename it to .env, then set it with your own local environment.
  5. run artisan generate app key
    php artisan key:generate
  6. run this command to add laravel storage link
    php artisan storage:link
  7. 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
  8. And done.