Skip to content

Commit

Permalink
Merge pull request #9 from shojibflamon/feature/update-readme-install…
Browse files Browse the repository at this point in the history
…ation

docs: Update Installation Guidelines in Readme
  • Loading branch information
Shipu authored Jun 15, 2024
2 parents c5f4b15 + 9edff63 commit cb08bae
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 5 deletions.
55 changes: 50 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,56 @@ Dinero is a multi account money tracker. It is a simple application that allows

## Installation
1. Clone the repository
2. Run `composer install`
3. Run `php artisan migrate --seed`
4. Login with the following credentials:
- Email: `[email protected]`
- Password: `12345678`

```ssh
git clone https://github.com/Shipu/dinero.git
```

3. Switch to the repo folder

```
cd dinero
```

2. Install all the dependencies using composer

```ssh
composer install
```

3. Copy the example env file and make the required configuration changes in the .env file

```ssh
cp .env.example .env
```

4. Generate a new application key

```ssh
php artisan key:generate
```

5. Run the database migrations with seeder (Set the database connection in .env before migrating)

```ssh
php artisan migrate --seed
```

6. Run the application

```ssh
php artisan serve
```

7. Browse the application

> Url: [http://localhost:8000/](http://localhost:8000/)
![img.png](img.png)

8. Login with the following credentials:
- Email: `[email protected]`
- Password: `12345678`

## NativePHP
for the NativePHP version, please check the [nativephp branch](https://github.com/shipu/dinero/tree/native-php)
Expand Down
Binary file added img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cb08bae

Please sign in to comment.