All Projects → thedevdojo → wave

thedevdojo / wave

Licence: MIT license
Wave - The Software as a Service Starter Kit, designed to help you build the SAAS of your dreams 🚀 💰

Programming Languages

PHP
23972 projects - #3 most used programming language
Blade
752 projects

Projects that are alternatives of or similar to wave

Djaoapp
User login, billing, access control as part of a session proxy
Stars: ✭ 61 (-98.33%)
Mutual labels:  subscription, saas
recurly
A Recurly API client written in golang. Actively maintained and unit tested. No external dependencies.
Stars: ✭ 40 (-98.9%)
Mutual labels:  subscription, saas
Saas Boilerplate
SaaS boilerplate built in Laravel, Bootstrap 4 and VueJs.
Stars: ✭ 152 (-95.83%)
Mutual labels:  subscription, saas
Saas Vuejs Tailwindcss
VueJS + TailwindCSS frontend for SaaS apps.
Stars: ✭ 107 (-97.07%)
Mutual labels:  saas, tailwindcss
saas-react-starter-kit-boilerplate
SaaStr is a React SaaS boilerplate to kickstart your new SaaS adventure as fast as possible. Built on top of Adonis JS for the BackEnd and React Starter Kit for the Front-End
Stars: ✭ 100 (-97.26%)
Mutual labels:  saas, saas-boilerplate
Plans
Laravel Plans is a package for SaaS apps that need management over plans, features, subscriptions, events for plans or limited, countable features.
Stars: ✭ 326 (-91.06%)
Mutual labels:  subscription, saas
Memberprism2
open source alternative to memberstack / memberspace , but with both front and backend member-only content protection
Stars: ✭ 171 (-95.31%)
Mutual labels:  subscription, saas
Saas
Build your own SaaS business with SaaS boilerplate. Productive stack: React, Material-UI, Next, MobX, WebSockets, Express, Node, Mongoose, MongoDB. Written with TypeScript.
Stars: ✭ 2,720 (-25.4%)
Mutual labels:  saas, saas-boilerplate
pingping
Building a real world SaaS with Laravel, TailwindCSS and VueJS
Stars: ✭ 97 (-97.34%)
Mutual labels:  saas, tailwindcss
subscribie
Collect recurring payments online - subscription payments collection automation
Stars: ✭ 36 (-99.01%)
Mutual labels:  subscription, saas
Laraplans
SaaS style recurring plans for Laravel.
Stars: ✭ 163 (-95.53%)
Mutual labels:  subscription, saas
cashier-register
Cashier Register is a simple quota feature usage tracker for Laravel Cashier subscriptions.
Stars: ✭ 93 (-97.45%)
Mutual labels:  subscription, saas
gatsby-starter-redux-saas
An Gatsby starter for Saas products. Uses redux and apollo and a graphql token auth backend.
Stars: ✭ 18 (-99.51%)
Mutual labels:  saas, saas-boilerplate
responsive-html-email-templates
Collection of Free responsive HTML templates for Startups
Stars: ✭ 187 (-94.87%)
Mutual labels:  subscription, saas
SAAS-Starter-Kit-Pro
🚀A boilerplate for building Software-as-Service (SAAS) apps with Reactjs, and Nodejs
Stars: ✭ 313 (-91.42%)
Mutual labels:  saas, saas-boilerplate
headlesscommerce.org
Headless Commerce resources
Stars: ✭ 25 (-99.31%)
Mutual labels:  tailwindcss
explorer
A Blockchain Explorer for ARK using Vue.js and Tailwind CSS.
Stars: ✭ 108 (-97.04%)
Mutual labels:  tailwindcss
Limg
An image hosting service powered by Laravel
Stars: ✭ 41 (-98.88%)
Mutual labels:  tailwindcss
Planeverb
Project Planeverb is a CPU based real-time wave-based acoustics engine for games. It comes with an integration with the Unity Engine.
Stars: ✭ 22 (-99.4%)
Mutual labels:  wave
laravel-mix-tailwindcss-purgecss
Minimal Boilerplate for building static pages based on Laravel Mix 6, TailwindCSS 3, PostCSS 8, and ES6 Vanilla JS components.
Stars: ✭ 15 (-99.59%)
Mutual labels:  tailwindcss

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.

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

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].