ahmadiqbal1 / wave

Wave - The Software as a Service Starter Kit, designed to help you build the SAAS of your dreams πŸš€ πŸ’°

Home Page:https://devdojo.com/wave

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Note

DevDojo is excited to announce the rebranding of our project, Wave. The new iteration will be known as Foundation. Until we release the new version you can continue using Wave 2.0 and when the new version is available, you can migrate over to the new platform. This new new version is going to to be epic and it will help in our mission to make the process of building a SAAS as easy as possible. Be sure to signup here to be notified about updates on this project. Good things are coming πŸ˜‰

Introduction

Wave is a Software as a Service Starter Kit that can help you build your next great idea πŸ’°. Wave is built with Laravel, Voyager, TailwindCSS, and a few other awesome technologies. Here are some of the awesome features ✨:

Demo

View a live demo here, or deploy your own instance to DigitalOcean, by clicking the button below.

Deploy to DO

Installation

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

We'll need to utilize a MySQL database during the installation. For the following stage, you'll need to create a new database and preserve the credentials.

CREATE DATABASE wave;
CREATE USER 'wave'@'localhost' IDENTIFIED BY 'wave_password';
GRANT ALL PRIVILEGES ON wave.* TO 'wave'@'localhost';

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.

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

First, you should ensure that your web server has the required PHP extensions installed:

Laravel PHP Requirements

Following that, we'll need to install all composer dependencies through the following command:

composer install

4. Run Migrations and Seeds

We must migrate our database schema into our database, which we can accomplish by running the following command:

php artisan migrate

Finally, we will need to seed our database with the following command:
php artisan db:seed

πŸŽ‰ 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

We've also got a full video series on how you can setup, build, and configure Wave. 🍿 You can watch first few videos for free, and additional videos will require a DevDojo Pro subscription. By subscribing to a DevDojo Pro subscription you will also be supporting the ongoing development of this project. It's a win win! πŸ™Œ

Click here to watch the Wave Video Series.

Documentation

Checkout the official documentation here.

About

Wave - The Software as a Service Starter Kit, designed to help you build the SAAS of your dreams πŸš€ πŸ’°

https://devdojo.com/wave

License:MIT License


Languages

Language:PHP 72.7%Language:Blade 25.6%Language:JavaScript 1.2%Language:SCSS 0.2%Language:CSS 0.2%Language:Dockerfile 0.1%Language:Shell 0.0%