Download install visual c++ redistributable for visual studio 2012 update 4. Install both x86 and x64 versiondownload
Download and install WAMP 32 bitdownload
Download and install composerdownload

1. Install Composer (composer.exe)

582

Installing composer

Browse to C:\wamp\bin\php\php7.0.10\php.exe.

575

2. Select your version of PHP in WAMP

Select PHP 7+

533

3. Set up your database

Open your MySQL console:

481 588

Press enter for default password, or enter your master MySQL password if you changed it to something else previously.

597

Run the following commands to create and verify database:

create database snipeit;
show databases;
594

Create a database user and grant access to your new snipeit database:

create user snipe_user;
grant all on snipeit.* to 'snipe_user'@'localhost' identified by 'password123';

(Change password123 in the example above to something more secure, please.)

582

4. Extract and configure Snipe-IT and run composer

Download and exact Snipe-IT to c:\wamp\www\snipe-it.

600

Edit .env.example

570

See the Configuration options for more information on how to configure your Snipe-IT installation.

Save your edited env.example as .env

727

Open command prompt then change directory to c:\wamp\www\snipe-it\. Then run:

composer install --no-dev --prefer-source
600

5. Generate your app key

Run:

php artisan key:generate

This will update the app key in your .env file:

342

❗️

IMPORTANT

Be sure to keep this app key in a safe place, as it is necessary for decrypting any encrypted fields you might add.

6. Update your virtual host settings

Edit `httpd.conf. Remember to the change http://yourcomputername to whatever address you wish to access Snipe-IT by. (These values are case-sensitive.)

500

Then restart WAMP:

280

Then browse to the address you set up in httpd.conf, and you should see the Pre-Flight & Setup screen. Follow the on-screen instructions, and you're all set.