Skip to content

Commit

Permalink
Merge pull request #58 from codex-team/chore/yarn3
Browse files Browse the repository at this point in the history
chore: move from npm to yarn
  • Loading branch information
GeekaN2 authored Oct 19, 2023
2 parents 5feb875 + 984c32a commit 624b47d
Show file tree
Hide file tree
Showing 9 changed files with 6,004 additions and 8,998 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ dist
dist-ssr
*.local

# package manager
.yarn/*
!.yarn/releases
!.yarn/plugins
.pnp.*

# Editor directories and files
.vscode/*
!.vscode/extensions.json
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20
7 changes: 6 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"recommendations": ["vue.volar", "vue.vscode-typescript-vue-plugin"]
"recommendations": [
"vue.volar",
"vue.vscode-typescript-vue-plugin",
"arcanis.vscode-zipfs",
"dbaeumer.vscode-eslint"
]
}
874 changes: 874 additions & 0 deletions .yarn/releases/yarn-3.6.4.cjs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
yarnPath: .yarn/releases/yarn-3.6.4.cjs
nodeLinker: node-modules
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,26 @@
# notes.web
# notes.web

### How to run the project

Use node v20 (or at least v19)
```
nvm use
```

Install dependencies
```
yarn install
```

Copy .env.sample as .env
```
cp .env.sample .env
```

Run the project
```
yarn dev
```

The default project address is http://localhost:5173/

Loading

0 comments on commit 624b47d

Please sign in to comment.