PHPackages                             riipandi/altstack - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. riipandi/altstack

AbandonedArchivedProject[Framework](/categories/framework)

riipandi/altstack
=================

Alpine.js, Laravel, and Tailwind. An alternative full-stack development solution.

v9.0(4y ago)42445MITPHPPHP ^8.0.2

Since Mar 9Pushed 4y agoCompare

[ Source](https://github.com/riipandi/altstack)[ Packagist](https://packagist.org/packages/riipandi/altstack)[ Docs](https://github.com/riipandi/altstack)[ RSS](/packages/riipandi-altstack/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (11)Versions (24)Used By (0)

[![Project Logo](./public/banner.png)](./public/banner.png)

 [ ![Contribution welcome](https://camo.githubusercontent.com/67aa9d43613ea22815630bebd69db678b0deb4a3d1a9a6a0c6130cf8b5f6e690/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f436f6e747269627574696f6e732d77656c636f6d652d626c75652e7376673f7374796c653d666c61742d737175617265) ](https://github.com/riipandi/altstack/pulse) [ ![Total Download](https://camo.githubusercontent.com/2a61860c7eae66eccc8ef1ac3e81303c22893d40e6ec8478aa62f575970b510f/68747470733a2f2f706f7365722e707567782e6f72672f72696970616e64692f616c74737461636b2f642f746f74616c2e7376673f666f726d61743d666c61742d737175617265) ](https://packagist.org/packages/riipandi/altstack) [ ![Latest Stable Version](https://camo.githubusercontent.com/9f69f1bbb31f67cc3339387891ca8d8cde8a6d3efa1294c6b265dadd85bbff02/68747470733a2f2f706f7365722e707567782e6f72672f72696970616e64692f616c74737461636b2f762f737461626c652e7376673f666f726d61743d666c61742d737175617265) ](https://packagist.org/packages/riipandi/altstack) [ ![License](https://camo.githubusercontent.com/4512388df3797aefe269127676adf396da2dc584f18e9ee81eb5c00046d797a6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f72696970616e64692f616c74737461636b3f7374796c653d666c61742d737175617265) ](https://choosealicense.com/licenses/mit/)

Introduction
------------

[](#introduction)

AltStack is a boilerplate meant to standardize much of the setup that almost every web application needs. Reclaim your first few hours of development on every new project by allowing AltStack to give you a little speed boost. This is the Laravel template use Tailwind and Alpine.js as default preset and ships with some goodies.

I'm using this template for (nearly) all my personal projects and professional projects, but you may use my template but please notice that we offer no support whatsoever. We won't guarantee that the code (especially the main branch) is stable.

> In short: when using this, you're on your own.

Quick Start
-----------

[](#quick-start)

At least you will need `PHP >= 8.0` and `Nodejs >= 14.19`. For database backend, you can choose between `PostgreSQL >= 10` or `MySQL >= 5.7` or `MariaDB >= 10.3` or any other database engine that supported by Laravel. Also, you maybe want to use `Redis >= 5.x` for session store and or caching storage. Docker `>= 20.10` may required when developing using Laravel Sail.

By default I'm using PostgreSQL for main database. But, you can change it via `.env`configuration file.

### Prepare the database

[](#prepare-the-database)

```
-- If using PostgreSQL: sudo -u postgres psql
DROP DATABASE IF EXISTS "altstack"; DROP ROLE IF EXISTS "altstack";
CREATE ROLE "altstack" SUPERUSER CREATEDB CREATEROLE LOGIN ENCRYPTED PASSWORD 'passw0rd';
CREATE DATABASE "altstack"; GRANT ALL PRIVILEGES ON DATABASE "altstack" TO "altstack";

-- If using MariaDB 10.x: mysql -uroot -p
DROP USER IF EXISTS `altstack`@`localhost`;
DROP DATABASE IF EXISTS `altstack`; CREATE DATABASE `altstack`;
GRANT ALL PRIVILEGES ON `altstack`.* TO `altstack`@`localhost`
  IDENTIFIED BY 'passw0rd' WITH GRANT OPTION;
```

### Create New Project

[](#create-new-project)

```
# Use latest version:
composer create-project riipandi/altstack

# If you want to use spesific version:
composer create-project riipandi/altstack
```

Change `` with your own and `` with release version. See [release page](https://github.com/riipandi/altstack/releases) for the version number.

#### Package Version

[](#package-version)

The versioning number will follow the release of the Laravel version, followed by the package release number:

```
x.y  =>  x is Laravel version, y are AltStack version.
7.5  =>  Laravel 7.x.x, AltStack revision 5.

```

### Local Installation

[](#local-installation)

Edit or create `.env` file and then execute:

```
# Initialize project and dependencies
composer install --no-suggest
sail|php artisan key:generate
sail|php artisan migrate:fresh --seed
sail|php artisan storage:link

# Compiling resources
yarn install --non-interactive
yarn dev
```

> Default username is `admin` with `secret` for the password.

### Example Deployment

[](#example-deployment)

```
# Clone the project
sudo mkdir -p /srv/altstack ; cd $_
sudo chown -R $(whoami): /srv/altstack
git clone git@github.com:riipandi/altstack.git current

# Fix folder permissions
find /srv/altstack/. -type d -exec sudo chmod 0775 {} \;
find /srv/altstack/. -type f -exec sudo chmod 0644 {} \;
sudo chown -R $(whoami): /srv/altstack/current/.git
sudo chmod -R 0777 /srv/altstack/current/{bootstrap/cache,storage}
sudo chown -R webmaster:webmaster /srv/altstack
sudo chmod 0777 /srv/altstack

# Nginx virtualhost
sudo touch /etc/nginx/vhost.d/altstack.conf
cat /srv/altstack/current/stubs/vhost.nginx.stub | \
sudo tee /etc/nginx/vhost.d/altstack.conf > /dev/null
sudo systemctl restart nginx && sudo systemctl status nginx

# Supervisor daemon
sudo touch /etc/supervisor/conf.d/altstack.conf
cat /srv/altstack/current/stubs/supervisor.stub | \
sudo tee /etc/supervisor/conf.d/altstack.conf > /dev/null
sudo supervisorctl reread && sudo supervisorctl update
sudo supervisorctl restart altstack
sudo systemctl status supervisor
```

Security Issue
--------------

[](#security-issue)

If you discover any security related issues, please send an e-mail to  instead of using the issue tracker.

Thanks To...
------------

[](#thanks-to)

In general, I'd like to thank every single one who open-sources their source code for their effort to contribute something to the open-source community. Your work means the world! 🌍 ❤️

License
-------

[](#license)

This project is open-sourced software licensed under the [MIT license](https://aris.mit-license.org).

Copyrights in this project are retained by their contributors. See the [license file](./license.txt) for more information.

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity75

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~49 days

Recently: every ~131 days

Total

23

Last Release

1536d ago

Major Versions

v0.2.5 → v5.8.122019-05-03

v5.8.12 → v7.02020-08-22

v7.4 → v8.02020-09-12

v8.4 → v9.02022-02-23

PHP version history (5 changes)v0.0.1PHP ^7.2.1

v7.0PHP ^7.2.5

v8.0PHP ^7.3

v8.2PHP ^7.4|^8.0

v9.0PHP ^8.0.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/921834?v=4)[Aris Ripandi](/maintainers/riipandi)[@riipandi](https://github.com/riipandi)

---

Top Contributors

[![riipandi](https://avatars.githubusercontent.com/u/921834?v=4)](https://github.com/riipandi "riipandi (128 commits)")

---

Tags

alpinejsboilerplatelaravelscaffoldingstarter-projecttailwindframeworklaraveltailwindcssalpinejs

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/riipandi-altstack/health.svg)

```
[![Health](https://phpackages.com/badges/riipandi-altstack/health.svg)](https://phpackages.com/packages/riipandi-altstack)
```

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[krayin/laravel-crm

Krayin CRM

22.0k32.8k1](/packages/krayin-laravel-crm)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
