All Projects → riipandi → altstack

riipandi / altstack

Licence: MIT License
Alpine.js, Laravel, and Tailwind. An alternative full-stack development solution.

Programming Languages

PHP
23972 projects - #3 most used programming language
Blade
752 projects
CSS
56736 projects
shell
77523 projects

Projects that are alternatives of or similar to altstack

tailwind-ui-components
Free Tailwind CSS UI Components - Crafted for modern websites, landing pages and web apps. TailGrids Core is free and open-source so, feel free to use with your personal or commercial projects. If you would like to show your support and love, don't forget to give us a star 🌟
Stars: ✭ 49 (+25.64%)
Mutual labels:  tailwind, alpinejs
x-blade-components
Laravel Blade Components ready to use
Stars: ✭ 36 (-7.69%)
Mutual labels:  tailwind, alpinejs
Goodwork
Self hosted project management and collaboration tool powered by TALL stack
Stars: ✭ 1,730 (+4335.9%)
Mutual labels:  tailwind, alpinejs
axiom
Axiom - A Hugo Theme. GitTip: https://gitcoin.co/tip?username=jhauraw
Stars: ✭ 67 (+71.79%)
Mutual labels:  tailwind, alpinejs
ttall
Laravel fronend preset for TTALL stack - Tailwindcss | Turbolinks | Alpine.js | Laravel | Livewire 🚀
Stars: ✭ 50 (+28.21%)
Mutual labels:  tailwind, alpinejs
tailwind-layouts
Collection of Tailwind Layouts
Stars: ✭ 53 (+35.9%)
Mutual labels:  tailwind, alpinejs
fast-sg
Fast-SG: An alignment-free algorithm for ultrafast scaffolding graph construction from short or long reads.
Stars: ✭ 22 (-43.59%)
Mutual labels:  scaffolding
rapide
WIP! do not use just yet - Opinionated Vite + Alpine.js starter PWA template
Stars: ✭ 15 (-61.54%)
Mutual labels:  alpinejs
YATAS
Yet Another Tailwind Alpine Starter
Stars: ✭ 18 (-53.85%)
Mutual labels:  alpinejs
eslint-plugin-tailwind
ESLint rules for Tailwind CSS
Stars: ✭ 97 (+148.72%)
Mutual labels:  tailwind
nuxt-starter-netlify-cms
Example nuxt + netlify cms project. Nuxt port of Gatsby starter app.
Stars: ✭ 13 (-66.67%)
Mutual labels:  tailwind
dex-next
Pokedex App using NextJS and TailwindCSS
Stars: ✭ 28 (-28.21%)
Mutual labels:  tailwind
baby-chrome
Get your scaffolded chrome extension project. No more copy-paste!
Stars: ✭ 13 (-66.67%)
Mutual labels:  scaffolding
hypercolor
A curated collection of beautiful premade gradients using default colors from the Tailwind palette as well as a selection of custom color gradients.
Stars: ✭ 187 (+379.49%)
Mutual labels:  tailwind
variantwind
Most elegant way to work with TailwindCSS variants in Vue
Stars: ✭ 45 (+15.38%)
Mutual labels:  tailwind
Limg
An image hosting service powered by Laravel
Stars: ✭ 41 (+5.13%)
Mutual labels:  tailwind
laravel-livewire-ui
Laravel Livewire UI, Auth, & CRUD starter kit.
Stars: ✭ 92 (+135.9%)
Mutual labels:  scaffolding
ETL-Starter-Kit
📁 Extract, Transform, Load (ETL) 👷 refers to a process in database usage and especially in data warehousing. This repository contains a starter kit featuring ETL related work.
Stars: ✭ 21 (-46.15%)
Mutual labels:  starter-project
stencil-tailwind-plugin
Plugin for using tailwindcss with StencilJS
Stars: ✭ 17 (-56.41%)
Mutual labels:  tailwind
vite-reactts-electron-starter
Starter using Vite2 + React + Typescript + Tailwind + Electron Starter.
Stars: ✭ 142 (+264.1%)
Mutual labels:  tailwind

Project Logo

Contribution welcome Total Download Latest Stable Version License

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

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

-- 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

# Use latest version:
composer create-project riipandi/altstack <app_name>

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

Change <app_name> with your own and <version> with release version. See release page for the version number.

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

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

# Clone the project
sudo mkdir -p /srv/altstack ; cd $_
sudo chown -R $(whoami): /srv/altstack
git clone [email protected]: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

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

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

This project is open-sourced software licensed under the MIT license.

Copyrights in this project are retained by their contributors. See the license file for more information.

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].