This project uses Vue 3.
Ensure you have the following installed on your system:
Follow these steps to set up the project locally:
# Clone the repository
git clone <repository-url>
# Navigate to the project directory
cd explorer
# Install dependencies
npm installStart the local development server:
npm run serveThis will start a development server at http://localhost:8080/ (default). Open this URL in your browser to view the application.
To build the project for production:
npm run buildThe production-ready files will be generated in the dist directory.
To check and fix linting issues:
npm run lintIf the project includes tests, you can run them using:
npm run test- src/: Contains the source code of the application.
- public/: Static assets and the HTML template.
- dist/: Generated production build files.
We welcome contributions! Please follow these steps to contribute:
- Fork the repository.
- Create a new branch for your feature or bug fix:
git checkout -b feature-name 
- Commit your changes:
git commit -m "Description of changes"
- Push to your branch:
git push origin feature-name 
- Open a pull request.
This project is licensed under the MIT License.