Welcome to evanesoteric's digital matrix.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Before you begin, ensure you have Node.js installed on your machine. This will include npm
, which is necessary to install dependencies and run scripts defined in package.json
.
First, clone the repository to your local machine:
git clone https://github.com/evanesoteric/evanesoteric.com.git
Navigate to the project directory:
cd evanesoteric.com
Install the project dependencies:
npm install
To start the development server, use the following command:
npm run serve
This command starts a local development server. It usually opens automatically in your default browser at http://localhost:3000
(or another port if 3000 is in use). The development server will reload if you make edits to the source files. You will also see any lint errors in the console.
To start the develoment server without warning/error overlay:
npm run start:no-errors
To compile and build the project for production, use:
npm run build