Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
0243e0b
implement ancestor
bahman026 Dec 23, 2024
cbaccdf
Merge pull request #15 from bahman026/implement_ancestors
bahman026 Dec 23, 2024
9a81e7f
implement attributeGroup
bahman026 Dec 23, 2024
b3b35b9
Merge pull request #16 from bahman026/implement_attribute_group
bahman026 Dec 23, 2024
0249336
implement attributeGroupCategory seeder, factory, model, and migration
bahman026 Dec 23, 2024
02bb113
implement AttributeGroupCategoryResource
bahman026 Dec 23, 2024
b9305df
Merge pull request #17 from bahman026/implement_AttributeGroupCategory
bahman026 Dec 23, 2024
ec74724
implement Attribute
bahman026 Dec 24, 2024
eaa4ad5
implement AttributeResource
bahman026 Dec 24, 2024
28c6c46
run pint
bahman026 Dec 24, 2024
f699487
Merge pull request #18 from bahman026/implement_attribute
bahman026 Dec 24, 2024
1cbf536
create admin directory and improve docker
Aug 6, 2025
92b5204
(deciploy): update workflow directory to admin
Aug 6, 2025
81edd08
refactor(admin): update type annotation for fillable and hidden attri…
Aug 8, 2025
0df9fa3
Merge pull request #20 from bahman026/upgrade_laravel_and_php_versions
bahman026 Aug 8, 2025
4f90323
build: install Composer dependencies before migration- Add 'composer …
Aug 8, 2025
1fb11fd
refactor(admin): improve user record visibility check
Aug 8, 2025
25ec25e
feat(admin): create product resource and related entities
Aug 9, 2025
54bdf8d
build(admin): update .env.example with new URLs
Aug 9, 2025
5543339
feat(app): add product status enum- Create ProductStatusEnum with DEL…
Aug 9, 2025
ebccc34
feat(admin): remove searchable functionality from category descriptio…
Aug 9, 2025
5d929bf
feat(models): add product relations and image properties
Aug 9, 2025
3765f41
feat(admin): add Filament service provider
Aug 9, 2025
a59779b
feat(admin): add FilamentServiceProvider to providers list
Aug 9, 2025
2b79561
refactor(factories): limit heading length for Brand model
Aug 9, 2025
57384b4
feat(images): add additional fields to images table
Aug 9, 2025
3e40e04
add product.jpeg
Aug 9, 2025
a3d68f3
feat(admin): add sidebar widget for displaying Filament versions
Aug 9, 2025
4a16113
test(filament): add product resource test cases
Aug 9, 2025
8ed5a74
refactor(admin): replace TiptapEditor with TinyEditor for brand conte…
bahman026 Aug 12, 2025
d4ed2a8
feat(admin): replace TiptapEditor with TinyEditor for category content
bahman026 Aug 12, 2025
a75835c
feat(product): add attribute management and enhance product form
bahman026 Aug 12, 2025
c186d0f
feat(ProductFactory): add product attributes and highlights
bahman026 Aug 12, 2025
d62606d
feat(Product): implement attribute and highlight relationships
bahman026 Aug 12, 2025
8b9585e
refactor(products): remove unused JSON columns from products table
bahman026 Aug 12, 2025
4c52376
refactor(admin): simplify entrypoint path in Dockerfile
bahman026 Aug 12, 2025
5f198cc
test: remove HTML wrapping from content assertions
bahman026 Aug 12, 2025
95fdf88
fix(filament-forms-tinyeditor): reinitialize tinyeditor after sort- A…
bahman026 Aug 12, 2025
9661ffd
build(admin): replace Filament Tiptap Editor with TinyEditor
bahman026 Aug 12, 2025
b181c2b
Merge pull request #21 from bahman026/implement_product
bahman026 Aug 12, 2025
8ffb9e8
Merge branch 'main' into admin
bahman026 Aug 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
12 changes: 6 additions & 6 deletions .github/workflows/deploy-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,33 +19,33 @@ jobs:
tools: composer

- name: Install PHP Dependencies
working-directory: ./ShopFlow
working-directory: ./admin
run: |
composer install --no-interaction --prefer-dist --optimize-autoloader

- name: Compile CSS and JavaScript
working-directory: ./ShopFlow
working-directory: ./admin
run: |
npm ci
npm run build

- name: Setup Environment
working-directory: ./ShopFlow
working-directory: ./admin
run: |
cp .env.example .env
php artisan key:generate

- name: Run Pint Test
working-directory: ./ShopFlow
working-directory: ./admin
run: |
./vendor/bin/pint --test

- name: Run Pest Tests
working-directory: ./ShopFlow
working-directory: ./admin
run: |
./vendor/bin/pest

- name: Run PHPStan Analysis
working-directory: ./ShopFlow
working-directory: ./admin
run: |
./vendor/bin/phpstan --memory-limit=2048M analyse
65 changes: 0 additions & 65 deletions ShopFlow/docker/8.0/Dockerfile

This file was deleted.

5 changes: 0 additions & 5 deletions ShopFlow/docker/8.0/php.ini

This file was deleted.

26 changes: 0 additions & 26 deletions ShopFlow/docker/8.0/start-container

This file was deleted.

14 changes: 0 additions & 14 deletions ShopFlow/docker/8.0/supervisord.conf

This file was deleted.

64 changes: 0 additions & 64 deletions ShopFlow/docker/8.1/Dockerfile

This file was deleted.

5 changes: 0 additions & 5 deletions ShopFlow/docker/8.1/php.ini

This file was deleted.

26 changes: 0 additions & 26 deletions ShopFlow/docker/8.1/start-container

This file was deleted.

14 changes: 0 additions & 14 deletions ShopFlow/docker/8.1/supervisord.conf

This file was deleted.

65 changes: 0 additions & 65 deletions ShopFlow/docker/8.2/Dockerfile

This file was deleted.

5 changes: 0 additions & 5 deletions ShopFlow/docker/8.2/php.ini

This file was deleted.

26 changes: 0 additions & 26 deletions ShopFlow/docker/8.2/start-container

This file was deleted.

14 changes: 0 additions & 14 deletions ShopFlow/docker/8.2/supervisord.conf

This file was deleted.

Loading