Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 770 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 770 Bytes

Capitano

Admin account:

Password: password

Notes

The .env and .end.example files are different than the ones on the web server, they contain the correct database credentials and have the debug set to false. Make sure to add your local database name and password to your .env or .env.example file.

How to run on Windows

  1. Download and install XAMPP
  2. Download and install NPM
  3. Download and install git
  4. Clone this repository
  5. Inside your project directory run:
  6. composer install
  7. cp .env.example .env
  8. php artisan key:generate
  9. php artisan migrate
  10. php artisan db:seed
  11. npm install
  12. npm run dev
  13. php artisan serve
  14. Go to the link generated by the previous command (localhost:8000 or 127.0.0.1:8000)