Skip to content

Commit

Permalink
Adding updated versions of the themes
Browse files Browse the repository at this point in the history
  • Loading branch information
tnylea committed Apr 4, 2021
1 parent 1e8fc2b commit 633f64c
Show file tree
Hide file tree
Showing 9 changed files with 542 additions and 412 deletions.
55 changes: 54 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,60 @@ View a live [demo here](https://wave.devdojo.com), or deploy your own instance t


## Installation
There are 2 options you can use to install wave. The first option is to Deploy to a Digital Ocean droplet and be up and running with your new Software as a service in a matter of minutes. The second option is to install this on your local machine.

To install Wave, you'll want to clone or download this repo:

```
git clone https://github.com/thedevdojo/wave.git project_name
```

Next, we can install Wave with these **4 simple steps**:

### 1. Create a New Database

During the installation we need to use a MySQL database. You will need to create a new database and save the credentials for the next step.

### 2. Copy the `.env.example` file

We need to specify our Environment variables for our application. You will see a file named `.env.example`, you will need to duplicate that file and rename it to `.env`.

Then, open up the `.env` file and update your *DB_DATABASE*, *DB_USERNAME*, and *DB_PASSWORD* in the appropriate fields. You will also want to update the *APP_URL* to the URL of your application.

```bash
APP_URL=http://wave.test

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=wave
DB_USERNAME=root
DB_PASSWORD=
```


### 3. Add Composer Dependencies

Next, we will need to install all our composer dependencies by running the following command:

```php
composer install
```
### 4. Run Migrations and Seeds

We need to migrate our database structure into our database, which we can do by running:

```php
php artisan migrate
```
<br>
Finally, we will need to seed our database with the following command:

```php
php artisan db:seed
```
<br>

🎉 And that's it! You will now be able to visit your URL and see your Wave application up and running.


## Watch, Learn, and Build
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"require": {
"php": "^7.3|^8.0",
"devdojo/app": "0.11.0",
"devdojo/themes": "0.0.4",
"devdojo/themes": "0.0.5",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^1.0",
"guzzlehttp/guzzle": "^7.0.1",
Expand Down
Loading

0 comments on commit 633f64c

Please sign in to comment.