Skip to content
This repository has been archived by the owner on Aug 7, 2021. It is now read-only.

StephanWagner/vaulty

Repository files navigation

Vaulty


Install

Install with composer

composer create-project stephanwagner/vaulty vaulty --prefer-dist

Update database info

Create a database with charset utf8mb4 and update config information in .env file.

Migrate database

Run php artisan migrate to migrate initial tables.

php artisan migrate

Build assets

This project uses Gulp. See more in section "Assets".

To build the CSS and JS files, run npm install and then npm run build.

npm install && npm run build

Create admin user

Open vaulty in a browser, you will be prompted to create the admin user.


Assets

This project uses Gulp. More info at https://gulpjs.com

Watch assets during development:

gulp watch
npm run watch

Build assest for production:

gulp build
npm run build