Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 23
node-version-file: .nvmrc
cache: "npm"
- name: Install dependencies
run: npm ci
Expand Down
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
23.5.0
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
23.5.0
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
# Code Café Community website

:construction: Currently under construction :construction:

## Prerequisites for Contributing

This project requires the following:

- Node version `23.5.0`

### Setting Up Node.js Version

To ensure compatibility, please use [nvm](https://github.com/nvm-sh/nvm) or a similar tool to manage Node versions.

#### Using nvm

1. Install nvm if you don’t already have it: https://github.com/nvm-sh/nvm#installing-and-updating.
2. Run the following command in the project directory:
```bash
nvm use
```

If you don’t have Node.js 23.5.0 installed, nvm will prompt you to install it.

run:

```bash
nvm use 23.5.0
```

### Install Dependencies

Once the correct Node.js version is set up, install the project's dependencies:

```bash
npm install
```

### Start the Development Server

```bash
npm run dev
```
Loading