KalypsoDev / PET-HOLIDAYS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

📝 PET HOLIDAYS

git branches

Badge en Desarollo

BRANCH Description
main Main branch. Only the final results.
frontend Front-end development
API Back-end development

🛠️ Tecnologies:

For this project we have used :


💻 Installation Steps:

  1. Download and Install Node.js: Visit the official website and download the version compatible with your operating system. Follow the installation instructions provided on the website.

  2. Download and Install XAMPP: Visit the official XAMPP website and download the version compatible with your operating system (Windows, macOS or Linux). Follow the installation instructions provided on the website.

  3. Download and Install Composer: Visit the official web and download the version compatible with your operating system. Follow the installation instructions provided on the website.

  4. Start XAMPP and Apache: After installing XAMPP, start the application. Start the Apache server from the XAMPP control panel.

  5. You can use a compatible database (e.g. MySQL, PostgreSQL), in our case MySQL is used. Open PHPMyAdmin in your web browser and create the database you are going to work with, for example :

  • Click on "SQL" in the top navigation bar.
  • In the SQL query window, paste the provided SQL code:
CREATE DATABASE pet_holidays; 
  1. Clone the repository: git clone https://github.com/Kalypso89/PET-HOLIDAYS.git

  2. Place the project in the htdocs folder:

  • In XAMPP, the home directory of the web server is htdocs. Place the project in this directory.
  1. Open the project in Visual Studio Code (a source code editor developed by Microsoft for Windows, Linux, macOS and Web).

  2. Open the project terminal in Visual Studio Code and run composer install and npm install.

  3. Then copy the Configuration File with the following command cp .env.example . env. Configure your file . env with details of your environment, such as the connection to the database.

  4. Then you must generate the Application Key with the following command php artisan key:generate.

  5. Then run Migrations and Seeds with the following command php artisan migrate --seed. This will configure the database structure, create the necessary tables and populate them with the test data that was preset in the project.

  6. Start Development Server : Run the following command php artisan serve. The application will be available in http://localhost:8000 (or on the port specified by the console).

  7. In another terminal you must Compile Assets with the command npm run dev. This command will compile the assets and place them in the appropriate folder for use in the application.

  8. Access to the App: Open your browser and visit http://localhost:8000. You should see your application running.

  9. Access your project in the browser: Open your web browser and visit the project path with localhost first.

  10. Enjoy it.

📜License

This project is licensed under the terms of the MIT license. This means that you can use, copy, modify and distribute the code freely, as long as you acknowledge the original authorship and do not use it for commercial purposes.

👩‍💻Authors

Created with 💜 by:

About

License:MIT License


Languages

Language:PHP 53.8%Language:JavaScript 24.3%Language:Blade 18.9%Language:CSS 2.2%Language:HTML 0.8%