Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
fix: update macOS and ubuntu
Browse files Browse the repository at this point in the history
Fixes #135
  • Loading branch information
NRayya committed Sep 8, 2022
1 parent dc8cc4c commit f6ce8d7
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion docs/developer-guides/installation/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@ composer install
```bash
./vendor/bin/sail up
```
* Run the below command to migrate the database with some dummy values.
Don't forget to note down the admin's user id and password provided at the end of migration output.
```bash
./vendor/bin/sail artisan migrate:refresh --seed
```

* Open another terminal and run the below command to boot up your local static web server.
```bash
npm install && npm run dev
```

Once the application's Docker containers have been started, you can access the application in your web browser at [http://localhost](http://localhost). But first, you will be prompted to <b>Generate app key</b>. After pressing the generation button, the following message is shown on the screen: "The solution was executed successfully. Refresh now." After refreshing, you access the application.

Expand Down Expand Up @@ -117,7 +127,7 @@ composer install
./vendor/bin/sail up
```
* Run the below command to migrate the database with some dummy values.
Don't forget to note down the admin's user id and password prompted at the end of migration output.
Don't forget to note down the admin's user id and password provided at the end of migration output.
```bash
./vendor/bin/sail artisan migrate:refresh --seed
```
Expand Down Expand Up @@ -183,6 +193,18 @@ composer install
```bash
./vendor/bin/sail up
```

* Run the below command to migrate the database with some dummy values.
Don't forget to note down the admin's user id and password provided at the end of migration output.
```bash
./vendor/bin/sail artisan migrate:refresh --seed
```

* Open another terminal and run the below command to boot up your local static web server.
```bash
npm install && npm run dev
```

Once the application's Docker containers have been started, you can access the application in your web browser at [http://localhost](http://localhost). But first, you will be prompted to <b>Generate app key</b>. After pressing the generation button, the following message is shown on the screen: "The solution was executed successfully. Refresh now." After refreshing, you access the application.

#### CentOS 8
Expand Down

0 comments on commit f6ce8d7

Please sign in to comment.