Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kitamreik/ecocycle-test
This is a test environment as the Headstarter Final Project requirement, where we as part of Track B are assisting an organization with their backlog.
https://github.com/kitamreik/ecocycle-test
ejs-templating express-js node-js
Last synced: 29 days ago
JSON representation
This is a test environment as the Headstarter Final Project requirement, where we as part of Track B are assisting an organization with their backlog.
- Host: GitHub
- URL: https://github.com/kitamreik/ecocycle-test
- Owner: Kitamreik
- Created: 2024-08-31T00:10:37.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T07:17:19.000Z (29 days ago)
- Last Synced: 2024-10-21T07:42:42.811Z (29 days ago)
- Topics: ejs-templating, express-js, node-js
- Language: CSS
- Homepage: https://ecocycle-test.vercel.app
- Size: 2 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### ERD for the project:
```mermaid
erDiagram
%% Lookup Tables
languages {
INT languageId PK
STRING languageName
TIMESTAMP created_at
TIMESTAMP updated_at
}counties {
INT countyId PK
STRING countyName
TIMESTAMP created_at
TIMESTAMP updated_at
}cities {
INT cityId PK
STRING cityName
INT countyId FK
TIMESTAMP created_at
TIMESTAMP updated_at
}schoolDistricts {
INT districtId PK
STRING districtName
TIMESTAMP created_at
TIMESTAMP updated_at
}phoneTypes {
INT phoneTypeId PK
STRING phoneTypeName
TIMESTAMP created_at
TIMESTAMP updated_at
}requestStatuses {
INT requestStatusId PK
STRING requestStatusName
TIMESTAMP created_at
TIMESTAMP updated_at
}sessionStatuses {
INT sessionStatusId PK
STRING sessionStatusName
TIMESTAMP created_at
TIMESTAMP updated_at
}presentationCategories {
INT categoryId PK
STRING categoryName
TIMESTAMP created_at
TIMESTAMP updated_at
}%% Main Tables
schools {
INT sId PK
STRING sName
STRING sStreetAddress
INT sDistrictId FK
INT sCityId FK
BOOLEAN sGSS
BOOLEAN sTitle1
INT sLanguageId FK
TIMESTAMP created_at
TIMESTAMP updated_at
}requests {
INT rId PK
INT rsId FK
STRING rContactName
STRING rContactEmail
STRING rContactPhone
STRING rContactPType
STRING rContactBestTimes
INT rStatusId FK
STRING rCommunication
STRING rNotes
TIMESTAMP created_at
TIMESTAMP updated_at
}presentations {
INT pId PK
STRING pName
INT pCategoryId FK
TIMESTAMP created_at
TIMESTAMP updated_at
}funding {
INT fId PK
STRING fName
TIMESTAMP created_at
TIMESTAMP updated_at
}users {
INT userId PK
STRING userName
STRING userEmail
STRING userPhone
BOOLEAN isActive
TIMESTAMP created_at
TIMESTAMP updated_at
}trainingSessions {
INT tsId PK
INT rId FK
INT pId FK
INT fId FK
INT userId FK
STRING tsGrades
TIMESTAMP tsScheduledDateTime
TIMESTAMP tsPreferredDateTimeStart
TIMESTAMP tsPreferredDateTimeEnd
INT tsStudents
INT tsClassrooms
INT tsAdults
INT tsStatusId FK
TIMESTAMP created_at
TIMESTAMP updated_at
}%% Relationships
cities ||--o{ counties : has
schools ||--o{ cities : located_in
schools ||--o{ schoolDistricts : belongs_to
schools ||--o{ languages : offers
requests ||--o{ schools : pertains_to
requests ||--o{ requestStatuses : has
presentations ||--o{ presentationCategories : belongs_to
trainingSessions ||--o{ requests : involves
trainingSessions ||--o{ presentations : includes
trainingSessions ||--o{ funding : funded_by
trainingSessions ||--o{ users : conducted_by
trainingSessions ||--o{ sessionStatuses : has
```
## Wireframe for the project (First Draft & MVP - Subject to Change):
### Dashboard Section:
![Mockup Image](./mockups/dashboard.png)### Request Management Section:
![Mockup Image](./mockups/requestpage.png)### School Management Section:
![Mockup Image](./mockups/schoolsection.png)### User Management Section:
![Mockup Image](./mockups/usersection.png)### Calendar Section:
![Mockup Image](./mockups/calendar.png)