thedevdojo / wave
- четверг, 15 апреля 2021 г. в 00:26:38
Wave - The Software as a Service Starter Kit, designed to help you build the SAAS of your dreams 🚀 💰
Wave is a Software as a Service Starter Kit that can help you build your next great idea
View a live demo here, or deploy your own instance to DigitalOcean, by clicking the button below.
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:
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.
.env.example
fileWe 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=
Next, we will need to install all our composer dependencies by running the following command:
composer install
We need to migrate our database structure into our database, which we can do by running:
php artisan migrate
php artisan db:seed
We've also got a full video series on how you can setup, build, and configure Wave.
Click here to watch the Wave Video Series.
Checkout the official documentation here.