Appearance
Developer Guide
Development & Contribution guide for Developers looking to customize crater for their own projects or contribute to the development of crater.
Installation
- Clone the repository from github https://github.com/crater-invoice/crater.
- Install Yarn globally if you haven't installed that already , for more information please refer this link
- After installing Yarn globally , run
yarn
command inside your cloned folder, it will download all the required dependencies. - Run
yarn dev
to generate the public files (doyarn build
if you wish to use it on production). - Install composer to your system and run
composer install
inside your cloned folder to install all laravel/php dependencies. - Create an
.env
file by running the following command:cp .env.example .env
. Or alternately you can just copy.env.example
file to the same folder and re-name it to.env
. - run command:
php artisan key:generate
to generate a unique application key. - Open the link to the domain in the browser (Example:
https://demo.craterapp.com
) and complete the installation wizard as directed.