- Node.js (which includes npm)
To get a local copy up and running, follow these steps.
-
Clone the repository:
git clone https://github.com/your-username/your-repo.git cd your-repo
-
Install npm if you haven't already:
Visit the Node.js website and download the latest version. npm is included with Node.js, so you will get npm when you install Node.js.
-
Install project dependencies:
In the project directory, run:
npm install
To start the development server, run:
npm run dev
This will start the server and you can view your project in the browser at http://localhost:3000
or the port specified in your configuration.
- Fork the repository.
- Create your feature branch:
git checkout -b feature/YourFeature
. - Commit your changes:
git commit -m 'Add some feature'
. - Push to the branch:
git push origin feature/YourFeature
. - Open a pull request.
If you're unsure where to get started/how to do what, look at the code for the 2023 website.