Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/axeldotdev/ssk
The SaaS Starter Kit (SSK) help you build your app quickly.
https://github.com/axeldotdev/ssk
inertia laravel saas shadcn starter-kit tailwindcss vue
Last synced: 3 months ago
JSON representation
The SaaS Starter Kit (SSK) help you build your app quickly.
- Host: GitHub
- URL: https://github.com/axeldotdev/ssk
- Owner: axeldotdev
- License: mit
- Created: 2024-07-11T04:48:49.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T22:25:08.000Z (6 months ago)
- Last Synced: 2024-08-13T01:17:42.884Z (6 months ago)
- Topics: inertia, laravel, saas, shadcn, starter-kit, tailwindcss, vue
- Language: PHP
- Homepage:
- Size: 4.28 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# SaaS Starter Kit (SSK)
The main goal of SSK is to help you (and me) build app quickly and it brings a ton of cool features on top of Laravel Breeze.
But my other goal is to use it as a storage for all the class, enums, traits, configs and other stuff that I use in every app I work on. And I hope it will be usefull for you too like a big Gist.
You can also use the [Livewire version here](https://github.com/axeldotdev/ssk-livewire).
## Installation
```bash
git clone [email protected]:axeldotdev/ssk.git your-project-name
cd your-project-name
composer install
cp .env.example .env
php artisan key:generate
php artisan storage:link
php artisan migrate
npm install
npm run build # npm run dev
```By default the database is **SQLite** and the session, cache and queues are stored in it. It allows you to start building your app quickly and focus on the system later.
Horizon is installed and configure so you can switch your queues to redis very quickly.
**SSK** is just a wrapper around **Laravel Breeze** who is a wrapper around **Laravel**. You have all the power to modify it to suit your need.
## Available Features
- π§βπ» Login and registration with email, phone, Google or Microsoft
- β User verification via email or phone (depending on the sing up method)
- π Reset password for email
- π Privacy policy and Terms of service pages (with localized markdown files)
- π€ Onboarding (account, company, collaborators)
- π§βπΌ Collaborators invitation by email or phone
- π Multiple tenants (companies)
- π¬ Active sessions management *[coming soon]*
- ποΈ Company transfer ownership *[coming soon]*
- π 2FA *[coming soon]*
- π» API via token *[coming soon]*
- π Global search with shortcuts *[coming soon]*
- π API documentation (with localized markdow files)
- πΊπΈ English and π«π· French translations
- π¦ Multiple feature flags (to enable the features listed above)## Features Flags
To activate or deactivate a feature, you just need to open the class and change the boolean returned in the `resolve` method.
The features are located in the folder `app/Features`.
### SignViaEmail
Allows you to login and register via an email address.
### SignViaPhone
Allows you to login and register via a phone number.
### SignViaSSO
Allows you to login and register via a SSO provider.
You can add providers in the `config/socialstream.php` file and register the env variable in the `config/services.php` file.
SSK comes with Google and Microsoft by default.
### VerifyUser
Allows you to verify the user by email or phone according to his sign method.
### OnboardUser
Allows you to show an onboarding view to help user start using your app and register some important informations.
The onboarding feature just give you a basic system, it's up to you to add forms and other things into it.
### ApiTokens
Allows you to manage API tokens.
It comes with a view that list tokens and a form to create them. The tokens are default Laravel Sanctum tokens scoped on users.
### ApiDocumentation
Allows you to show an API documentation in your app when the user is authenticated.
The API works with markdown file so it's really easy to use, no PHP or Vue to add.
## Upgrading
If you need to upgrade your project to the newer version of SSk, we recommend you to follow [the upgrading guide](UPGRADING.md).
But! SSK is a starter kit and once you use it to init your project, the code is yours and you don't really need to upgrade to follow the newer version.
## Testing
```bash
php artisan test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
## Need Help?
π If you spot a bug, please [submit a detailed issue](https://github.com/axeldotdev/ssk/issues/new?assignees=&labels=bug&template=bug_report.md), and wait for assistance.
π€ If you have a question or feature request, please [start a new discussion](https://github.com/axeldotdev/ssk/discussions/new). For quick help, ask questions in the appropriate channel.
π If you discover a vulnerability, please review [our security policy](../../security/policy).
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [Axel Charpentier](https://github.com/axeldotdev)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.