-
Hello, I have a questions: Is it possible installation on windows 11 locally? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello, Yes, you can install WebErpMesV2 locally on Windows 11, but you will need a development environment like Laragon (recommended) or XAMPP to run it properly. (Wiki : https://github.com/SMEWebify/WebErpMesv2/wiki/Installation-Steps-(for-production) ) Here’s a basic guide to installing it on Windows 11: Install Laragon (or XAMPP)
Clone the WebErpMesV2 Repository Open a terminal or Git Bash and run: git clone https://your-repo-url.git
cd weberpmesv2 Install Dependencies Run: composer install
npm install Configure Environment Copy .env.example to .env: cp .env.example .env Set up database credentials in .env. Generate Application Key & Migrate Database php artisan key:generate
php artisan migrate
php artisan db:seed --class=PermissionTableSeeder
php artisan db:seed --class=CreateAdminUserSeeder Run the Application php artisan serve Then, open http://127.0.0.1:8000 in your browser. Let me know if you need more help! |
Beta Was this translation helpful? Give feedback.
Hello,
Yes, you can install WebErpMesV2 locally on Windows 11, but you will need a development environment like Laragon (recommended) or XAMPP to run it properly. (Wiki : https://github.com/SMEWebify/WebErpMesv2/wiki/Installation-Steps-(for-production) )
Here’s a basic guide to installing it on Windows 11:
Install Laragon (or XAMPP)
Clone the WebErpMesV2 Repository
Open a terminal or Git Bash and run:
git clone https://your-repo-url.git cd weberpmesv2
Install Dependencies Run:
Configure Environment
Copy .env.example to .env:
Set up datab…