Skip to content

Commit 433610c

Browse files
authored
Merge pull request #669 from hackforla/develop
Develop into Main
2 parents 38afa54 + 20155e2 commit 433610c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+974
-464
lines changed

dev/dev.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# environment file to configure docker containers
22

33
# postgres
4-
POSTGRES_NAME=<same as SQL_DATABASE>
4+
POSTGRES_DB=<same as SQL_DATABASE>
55
POSTGRES_USER=postgres
66
POSTGRES_PASSWORD=<same as SQL_PASSWORD>
77

docker-compose.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
volumes:
1212
- postgres_data:/lib/postgresql/data
1313
ports:
14-
- "5434:5434"
14+
- "5432:5432"
1515
healthcheck:
1616
test: [ "CMD-SHELL", "pg_isready" ]
1717
interval: 10s
@@ -58,6 +58,9 @@ services:
5858
- action: sync
5959
path: ./frontend
6060
target: /usr/src/app
61+
volumes:
62+
- ./frontend:/usr/src/app
63+
- /usr/src/app/node_modules
6164

6265
volumes:
6366
postgres_data: {}

frontend/package-lock.json

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
"clsx": "^2.1.1",
7474
"react-hook-form": "^7.46.1",
7575
"react-popper": "^2.3.0",
76+
"tailwind-merge": "^3.2.0",
7677
"vite-tsconfig-paths": "^4.3.1"
7778
}
7879
}

frontend/src/api_data/copData.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
interface copDatum {
1010
id: number;
1111
title: string;
12+
subtitle: string;
1213
icon: React.ElementType;
1314
description: string;
1415
roles: string[];
@@ -18,6 +19,7 @@ const copData: copDatum[] = [
1819
{
1920
id: 0, // will be replaced by useID when upgrade to React18+; see #200
2021
title: "UI/UX",
22+
subtitle: "UX Design and Writing",
2123
icon: CopIconUiux,
2224
description:
2325
"The User Interface/User Experience (UI/UX) Community of Practice (CoP) is a space for UI and UX designers and research professionals to share effective practices, and give and receive mentorship, set design and research standards, and to create guides for new projects. Recent meeting topics include how to create a professional online portfolio, a meet and greet with a Hack for LA alum who landed a job at Google, how to effectively network, and training in Figma.",
@@ -31,6 +33,7 @@ const copData: copDatum[] = [
3133
{
3234
id: 1,
3335
title: "Engineering",
36+
subtitle: "Frontend and Backend",
3437
icon: CopIconEngineering,
3538
description:
3639
"The Engineering Community of Practice (CoP) is a space for developers to share effective practices and set development standards and give and receive mentorship. Recent meeting topics include career advancement strategy workshops and “tech talks” with discussions on architecture paradigms, testing, and new technology.",
@@ -44,6 +47,7 @@ const copData: copDatum[] = [
4447
{
4548
id: 2,
4649
title: "Data Science",
50+
subtitle: "",
4751
icon: CopIconData,
4852
description:
4953
"The Data Science Community of Practice (CoP) is a space for data science professionals to discuss the current state of the field, share effective practices, give and receive mentorship, and to workshop projects. Recent meeting topics include reviewing popular tools for data analysis, using data science to improve Hack for LA workflows, and presenting research results to peers and leadership for feedback and mentoring.",
@@ -57,6 +61,7 @@ const copData: copDatum[] = [
5761
{
5862
id: 3,
5963
title: "Project/Product Management",
64+
subtitle: "Planning and Organization",
6065
icon: CopIconProduct,
6166
description:
6267
"The Product Managers (PM) Community of Practice (CoP) is a space for product management professionals to share effective practices, and give and receive mentorship, set product management standards, and to create guides and templates for new projects. Recent meeting topics include a project management focused book club, discussing how to best manage knowledge and issues, and brainstorming solutions to various PM issues.",
@@ -72,6 +77,7 @@ const copData: copDatum[] = [
7277
{
7378
id: 4,
7479
title: "DevOps",
80+
subtitle: "Dev and IT Operations",
7581
icon: CopIconOps,
7682
description:
7783
"The Operations (Ops) Community of Practice (CoP) is a space for operations professionals to discuss all areas of dev-ops, coordinate infrastructure improvement, and share effective practices, and give and receive mentorship. Recent meeting topics include improving AWS hosting, password vaults, and multi-tenant product architecture.",

frontend/src/components/Buttons/_Button.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,18 +102,18 @@ $theme-values: (
102102
),
103103
),
104104
"primary-dark": (
105-
"background-color": $color-blue,
106-
"color": $color-white,
105+
"background-color": $color-white,
106+
"color": $color-blue-dark,
107107
"focus": (
108-
"background-color": $color-blue-focused,
108+
"background-color": $color-blue-dark-focused,
109109
),
110110
"hover": (
111-
"background-color": $color-white,
111+
"background-color": $color-blue-dark-hover,
112112
"box-shadow": 0 4px 4px rgb(0 0 0 / 20%),
113-
"color": $color-charcoal,
113+
"color": $color-white,
114114
),
115115
"active": (
116-
"background-color": $color-blue-focused,
116+
"background-color": $color-blue-dark-focused,
117117
),
118118
),
119119
);

frontend/src/components/Dialog/_Dialog.scss

Lines changed: 0 additions & 42 deletions
This file was deleted.

frontend/src/components/Navigation/ProgressBar.tsx

Lines changed: 0 additions & 60 deletions
This file was deleted.

frontend/src/components/Navigation/_ProgressBar.scss

Lines changed: 0 additions & 26 deletions
This file was deleted.

frontend/src/components/Navigation/_index.scss

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)