Skip to content
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

Update install instructions with required js dependencies #1593

Merged
merged 1 commit into from
Dec 4, 2024
Merged
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
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,13 @@ Cantaloupe [installation instructions](https://arches.readthedocs.io/en/stable/d
4. Next ensure arches and arches_for_science are included as dependencies in package.json
```
"dependencies": {
"@uppy/aws-s3": "3.6.2",
"@uppy/core": "3.13.0",
"@uppy/dashboard": "3.9.0",
"@uppy/drag-drop": "3.1.0",
"@uppy/progress-bar": "3.1.1",
"@uppy/companion-client": "3.1.3",
"typescript": "5.6.2",
"arches": "archesproject/arches#dev/7.6.x",
"arches_for_science": "archesproject/arches-for-science#dev/2.0.x"
}
Expand All @@ -111,7 +118,7 @@ Cantaloupe [installation instructions](https://arches.readthedocs.io/en/stable/d
python manage.py runserver
```

8. Next cd into your project's app directory (the one with package.json e.g. `$PROJECT_NAME/$PROJECT_NAME/`) install and build front-end dependencies:
8. Next cd into your project's app directory (the one with package.json) install and build front-end dependencies:
```
npm install
npm run build_development
Expand Down
Loading