{"id":16026845,"url":"https://github.com/leogopal/spark-starter","last_synced_at":"2025-03-24T09:21:40.751Z","repository":{"id":51903977,"uuid":"365668094","full_name":"leogopal/spark-starter","owner":"leogopal","description":null,"archived":false,"fork":false,"pushed_at":"2021-05-16T10:29:21.000Z","size":13480,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-29T14:45:58.109Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leogopal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-09T04:39:52.000Z","updated_at":"2021-05-16T10:29:24.000Z","dependencies_parsed_at":"2022-08-23T18:30:17.007Z","dependency_job_id":null,"html_url":"https://github.com/leogopal/spark-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leogopal%2Fspark-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leogopal%2Fspark-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leogopal%2Fspark-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leogopal%2Fspark-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leogopal","download_url":"https://codeload.github.com/leogopal/spark-starter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245240829,"owners_count":20583102,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-08T20:03:14.220Z","updated_at":"2025-03-24T09:21:40.727Z","avatar_url":"https://github.com/leogopal.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://devdojo.com/wave\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.devdojo.com/assets/img/github-wave-logo.svg\" width=\"240\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003ca href=\"https://www.producthunt.com/posts/wave-2-0\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.devdojo.com/images/april2021/upvote-product-hunt-img.png\" height=\"auto\" width=\"auto\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n## Introduction\n\n[Wave](https://devdojo.com/wave) is a Software as a Service Starter Kit that can help you build your next great idea 💰. Wave is built with [Laravel](https://laravel.com), [Voyager](https://voyager.devdojo.com), [TailwindCSS](https://tailwindcss.com), and a few other awesome technologies. Here are some of the awesome features ✨:\n\n - [Authentication](https://wave.devdojo.com/docs/features/authentication)\n - [User Profiles](https://wave.devdojo.com/docs/features/user-profiles)\n - [User Impersonation](https://wave.devdojo.com/docs/features/user-impersonation)\n - [Subscriptions](https://wave.devdojo.com/docs/features/billing)\n - [Subscription Plans](https://wave.devdojo.com/docs/features/subscription-plans)\n - [User Roles](https://wave.devdojo.com/docs/features/user-roles)\n - [Notifications](https://wave.devdojo.com/docs/features/notifications)\n - [Announcements](https://wave.devdojo.com/docs/features/announcements)\n - [Fully Functional Blog](https://wave.devdojo.com/docs/features/blog)\n - [Out of the Box API](https://wave.devdojo.com/docs/features/api)\n - [Voyager Admin](https://wave.devdojo.com/docs/features/admin)\n - [Customizable Themes](https://wave.devdojo.com/docs/features/themes)\n\n\n## Demo\nView a live [demo here](https://wave.devdojo.com), or deploy your own instance to DigitalOcean, by clicking the button below.\n\n\u003ca href=\"https://cloud.digitalocean.com/apps/new?repo=https://github.com/leogopal/spark-starter/tree/main\" target=\"_blank\"\u003e\u003cimg src=\"https://www.deploytodo.com/do-btn-blue.svg\" width=\"240\" alt=\"Deploy to DO\"\u003e\u003c/a\u003e\n\n\n## Installation\n\nTo install Wave, you'll want to clone or download this repo:\n\n```\ngit clone https://github.com/thedevdojo/wave.git project_name\n```\n\nNext, we can install Wave with these **4 simple steps**:\n\n### 1. Create a New Database\n\nDuring 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.\n\n### 2. Copy the `.env.example` file\n\nWe 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`.\n\nThen, 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.\n\n```bash\nAPP_URL=http://wave.test\n\nDB_CONNECTION=mysql\nDB_HOST=127.0.0.1\nDB_PORT=3306\nDB_DATABASE=wave\nDB_USERNAME=root\nDB_PASSWORD=\n```\n\n\n### 3. Add Composer Dependencies\n\nNext, we will need to install all our composer dependencies by running the following command:\n\n```php\ncomposer install\n```\n### 4. Run Migrations and Seeds\n\nWe need to migrate our database structure into our database, which we can do by running:\n\n```php\nphp artisan migrate\n```\n\u003cbr\u003e\nFinally, we will need to seed our database with the following command:\n\n```php\nphp artisan db:seed\n```\n\u003cbr\u003e\n\n🎉 And that's it! You will now be able to visit your URL and see your Wave application up and running.\n\n\n## Watch, Learn, and Build\n\nWe'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](https://devdojo.com/pro) subscription. By subscribing to a [DevDojo Pro](https://devdojo.com/pro) subscription you will also be supporting the ongoing development of this project. It's a win win! 🙌\n\n[Click here to watch the Wave Video Series](https://devdojo.com/course/wave).\n\n\n## Documentation\n\nCheckout the [official documentation here](https://wave.devdojo.com/docs).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleogopal%2Fspark-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleogopal%2Fspark-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleogopal%2Fspark-starter/lists"}