This is a web application that allows users to manage their wardrobe digitally. Users can organize their clothing items, create outfits, and track their fashion choices.
Before deploying the digital wardrobe web application, ensure that the following software is installed on your PC:
- PHP (version 7.4 or higher)
- Composer
- Laravel Framework (version 8.x)
- Node.js (version 14.x or higher)
- NPM (Node Package Manager)
- Clone the repository
git clone https://github.com/your-username/stylesensei.git
- Navigate to project directory
cd stylesensei
- Install PHP dependencies
composer install
- Install JavaScript dependencies
npm install
- Create a copy of the
.env.example
file and rename it to.env
cp .env.example .env
- Generate an application key:
php artisan key:generate
- Configure the database
- Open the
.env
file and update the database connection details, including the database name, username, and password. - Create a new database on your MySQL server with the specified name.
- Migrate the database
php artisan migrate
- Compile the assets:
npm run dev
- Start the development server
php artisan serve
- Open a web browser and access the application at
http://localhost:8000