Welcome to the ZICTIA website! This repository contains the source code for a web application built with Vue.js, showcasing the features of the ZICTIA Organization.
- Prerequisites
- Getting Started
- Building for Production
- Linting and Fixing Files
- Customize Configuration
- About Vue.js
- Issues and Contributions
Before you can run the project locally, ensure you have the following installed on your machine:
git clone https://github.com/threefoldfoundation/www_zictia_demo.git
cd www_zictia_demo
Ensure you have Node.js and npm installed. If not, download and install them from https://nodejs.org/.
Yarn is a fast and reliable alternative package manager. You can install it globally using npm:
npm install -g yarn
Install the project dependencies using npm or Yarn:
npm install
# or with Yarn
yarn
This command installs the necessary packages and dependencies required for the project.
npm run serve
# or with Yarn
yarn serve
The development server will start, and you can view the app locally in your browser.
Open your web browser and go to:
- http://localhost:8080/ - Local address
- http://192.168.0.117:8080/ - Network address
Use one of the above URLs to access the ZICTIA Demo website.
To create a production-ready build, run the following command:
yarn build
This command generates optimized production files in the dist
directory.
To lint and fix project files, run:
yarn lint
This command uses ESLint to analyze your code and automatically fix any issues it can.
See the Configuration Reference for customization options.
Vue.js is a progressive JavaScript framework for building user interfaces. It is designed from the ground up to be incrementally adaptable, making it easy to integrate with other libraries or existing projects.
Learn more about Vue.js at https://vuejs.org/.
If you encounter any issues or have suggestions for improvement, please open an issue on the GitHub repository. Contributions are welcome!