-
-
Notifications
You must be signed in to change notification settings - Fork 213
Update README with getting started section #745
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,6 +39,19 @@ The Accord Project Playground is an open-source project, welcoming contributions | |
| - **Documentation and Tutorials:** Contribute to comprehensive documentation and tutorials that guide users through the platform effectively. | ||
|
|
||
| ## Demo | ||
| ## Getting Started | ||
|
|
||
| ### Prerequisites | ||
|
|
||
| - Node.js >= 18 (LTS recommended) | ||
| - npm >= 9 | ||
|
|
||
| ### Installation | ||
|
|
||
| ```bash | ||
| git clone https://github.com/accordproject/template-playground.git | ||
| cd template-playground | ||
| npm install | ||
|
Comment on lines
+42
to
+54
|
||
|
|
||
| The Template Playground is deployed at: [https://playground.accordproject.org](https://playground.accordproject.org) | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The npm version requirement doesn't match the package.json specification. The package.json defines "npm": ">=6" (line 8), but this documentation states "npm >= 9". Please align this with the actual package.json requirement, which is npm >= 6.