Skip to content

Commit

Permalink
Adjust interface and cost
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaniyar committed May 29, 2023
1 parent d1b8c8e commit a0085c4
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions applications/grantmaster.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ interface Grant {
level: number;
paymentAddress: string;
githubPRs: string[];
applicationLink: string;
applicationDoc: string;
status: string;
lastUpdated: Date;
committeeApprovals: string[];
Expand All @@ -52,7 +54,12 @@ interface Milestone {
FTE: number;
costs: number;
deliverables: Deliverable[];
codeRepos: string[];
license: string;
githubPrs: string[];
deliveryLink: string;
deliveryDoc: string;
evaluations: Evaluation[];
}

interface Deliverable {
Expand All @@ -79,6 +86,12 @@ interface TeamMember {
linkedin?: string;
github?: string;
}

interface Evaluation {
author: string;
link: string;
doc: string;
}
```

For the actual implementation of the database the [Mongoose npm package](https://www.npmjs.com/package/mongoose) will be used.
Expand Down Expand Up @@ -157,13 +170,13 @@ To get a feeling how the page will look like, I prepared this Hi Fi wireframe. K

- **Total Estimated Duration:** 4 months
- **Full-Time Equivalent (FTE):** 0.5 FTE
- **Total Costs:** 18,000 USD
- **Total Costs:** 21,600 USD

### Milestone 1 — Development of API and Grant Frontend

- **Estimated Duration:** 2 months
- **FTE:** 0.5
- **Costs:** 9,000 USD
- **FTE:** 0.6
- **Costs:** 10,800 USD

| Number | Deliverable | Specification |
| -----: | ----------- | ------------- |
Expand All @@ -182,8 +195,8 @@ To get a feeling how the page will look like, I prepared this Hi Fi wireframe. K
### Milestone 2 — Development of API and Grant Frontend

- **Estimated Duration:** 2 months
- **FTE:** 0.5
- **Costs:** 9,000 USD
- **FTE:** 0.6
- **Costs:** 10,800 USD

| Number | Deliverable | Specification |
| -----: | ----------- | ------------- |
Expand Down

0 comments on commit a0085c4

Please sign in to comment.