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

upgrade sharp to 0.32.x #6

Merged
merged 2 commits into from
Oct 11, 2023
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: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

.env*

# Build directory
public/

Expand Down
25 changes: 8 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,50 +10,41 @@ FilmDrop Dashboard for displaying metrics and workflows found in the Cirrus proc

### Requirements

- node
- yarn*
- Environment files
- Node.js 18
- Yarn 1.x [installation](https://classic.yarnpkg.com/lang/en/docs/install/#mac-stable)
- Dotenv files

*If you don't have yarn installed, you should be okay running the project with npm, but keep in mind the dependencies should be updated using yarn.

#### Environment Files
#### Dotenv Files

For local development, you should include an `.env.development` file with the proper configuration.

For production builds, you should include an `.env.production` file with the proper configuration.

```
```shell
CIRRUS_API_ENDPOINT="[Endpoint]"
METRICS_API_ENDPOINT="[Endpoint]"
```

### Installing Dependencies

```
```shell
yarn install
```

### Development

```
```shell
yarn develop
```

### Production Builds

```
```shell
yarn build
```

## Deployment

### Links

- Live dev link: <https://dashboard.dev.demo.filmdrop.io>
- Live prod link: <https://dashboard.demo.filmdrop.io>

Deployment is handled by gitlab ci scripts: `.gitlab-ci.yml`\

### Deploying cirrus-dashboard into AWS

```bash
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"license": "Apache-2.0",
"version": "0.5.0",
"author": "Element 84, Inc. <[email protected]>",
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"dependencies": {
"@material-ui/core": "^4.10.2",
"axios": "^1.1.2",
Expand Down Expand Up @@ -47,4 +50,4 @@
"semver": "^7.5.3",
"loader-utils": "^1.4.1"
}
}
}
9 changes: 0 additions & 9 deletions sonar-project.properties

This file was deleted.

Loading