Skip to content

Commit 2ff00ab

Browse files
feat: init commit (#1)
1 parent 1d28fa9 commit 2ff00ab

File tree

14 files changed

+3083
-1
lines changed

14 files changed

+3083
-1
lines changed

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Continuous Integration
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
node: [24]
12+
13+
steps:
14+
- uses: actions/checkout@v6
15+
- name: Use Node.js ${{ matrix.node }}
16+
uses: actions/setup-node@v6
17+
with:
18+
node-version: ${{ matrix.node }}
19+
- name: Installing project dependencies
20+
run: |
21+
npm ci
22+
# - name: Format
23+
# run: |
24+
# npm run format:check
25+
# - name: Lint
26+
# run: |
27+
# npm run lint
28+
- name: Check Types
29+
run: |
30+
npm run check

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*DS_Store
2+
*.log
3+
node_modules/
4+
public/
5+
.greenwood/

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
legacy-peer-deps=true

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
24.4.0

README.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,31 @@
11
# playground.wcc.dev
2-
Playground repository for wcc.dev
2+
3+
Playground repository for [wcc.dev](https://www.wcc.dev) built using [**Greenwood**](https://greenwoodjs.dev/).
4+
5+
## Setup
6+
7+
1. Clone the repository
8+
1. Have NodeJS LTS installed (or run `nvm use`)
9+
1. Run `npm ci`
10+
11+
## Commands
12+
13+
To start the local development server, run:
14+
15+
```sh
16+
$ npm run dev
17+
```
18+
19+
To generate a production build, run:
20+
21+
```sh
22+
$ npm run build
23+
```
24+
25+
To start the production server, run:
26+
27+
> _**Note**: make sure you have generated a production build first._
28+
29+
```sh
30+
$ npm run serve
31+
```

greenwood.config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import type { Config } from "@greenwood/cli";
2+
3+
const config: Config = {};
4+
5+
export default config;

netlify.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[build]
2+
publish = "public/"
3+
command = "npm run build"
4+
5+
[build.processing]
6+
skip_processing = true
7+
8+
[build.environment]
9+
NODE_VERSION = "24.4.0"

0 commit comments

Comments
 (0)