Skip to content

mAgung14/Web-Pos-apps

Repository files navigation

Point of Sales Apps

Author: Muhammad agung

Last update: 21-08-2022

Develop by Siswa PKL SMK YPC Tasikmalaya

Install

$ git clone https://github.com/mAgung14/Web-Pos-apps.git
$ cd pos-apps
$ composer install
$ cp .env.example .env
$ php artisan key:generate
$ php artisan migrate
$ php artisan db:seed

Running

$ php artisan serve

open http://localhost:8000/

Nginx Config

server {

        root /var/www/html/pos-apps/public;

        index index.php;

        send_timeout 5m;
        proxy_read_timeout 3000;
        proxy_connect_timeout 3000;
        proxy_send_timeout 3000;

        server_name pos-apps.local;

        location / {
                try_files $uri $uri/ /index.php?$args;
        }

        location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass unix:/run/php/php8.1-fpm.sock;
        }

        location ~ /\.ht {
            deny all;
        }
}

About

untuk memenuhi jurnal siswa

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published