https://github.com/shuvroroy/outlay
Outlay is an expense tracker app build with TALL stack.
https://github.com/shuvroroy/outlay
alpinejs expense-tracker laravel livewire outlay tailwindcss tallstack
Last synced: 12 months ago
JSON representation
Outlay is an expense tracker app build with TALL stack.
- Host: GitHub
- URL: https://github.com/shuvroroy/outlay
- Owner: shuvroroy
- Created: 2021-01-10T20:11:04.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-24T16:10:54.000Z (about 5 years ago)
- Last Synced: 2025-03-22T17:13:29.470Z (12 months ago)
- Topics: alpinejs, expense-tracker, laravel, livewire, outlay, tailwindcss, tallstack
- Language: PHP
- Homepage: http://outlay.uu6cf71xzw-xmz4qq9z142o.p.runcloud.link
- Size: 224 KB
- Stars: 29
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

> Outlay is an expense tracker app build with TALL stack.

## Installation
Clone the repo locally:
```sh
git clone https://github.com/shuvroroy/outlay.git outlay
cd outlay
```
Install PHP dependencies:
```sh
composer install
```
Install NPM dependencies:
```sh
npm ci
```
Build assets:
```sh
npm run dev
```
Setup configuration:
```sh
cp .env.example .env
```
Generate application key:
```sh
php artisan key:generate
```
Edit .env and set your database connection details.
```sh
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=outlay
DB_USERNAME=root
DB_PASSWORD=
```
Run database migrations:
```sh
php artisan migrate
```
Run database seeder:
```sh
php artisan db:seed
```
Run the dev server (the output will give the address):
```sh
php artisan serve
```
You're ready to go! Visit outlay in your browser, and login with:
- **Username:** john@outlay.test
- **Password:** password
## Special Thanks
- [Mohammad Emran Hasan](http://github.com/phpfour)