Skip to content

Zero-Maiden/back-end

Repository files navigation

back-end

A back-end made in Laravel for Zero-Maiden/authentication.

Requirements

  • PHP (preferably version 7.4 or higher).
  • Composer which is the dependancy manager for PHP.
  • Node.js (npm and npx) for front-end dependencies.

How to install

  1. Clone the repository
$ git clone https://github.com/Zero-Maiden/back-end.git
  1. Go into the repository
$ cd back-end
  1. Install dependencies
$ composer install
$ npm install
  1. Set up environment configuration
$ cp .env.example .env
$ php artisan key:generate
  1. Set up database
$ php artisan migrate
$ php artisan db:seed # optional
  1. Serve the application
$ php artisan serve