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

Development #54

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5aaea9e
feat: added authentication and user data
natehubbit007 Nov 19, 2024
138585c
feat: integrated firebase
natehubbit007 Nov 22, 2024
7919f88
Merge pull request #1 from Natehubbit/feat/fxns-implementation
Natehubbit Nov 22, 2024
d42d97b
fix: removed chart series
natehubbit007 Nov 29, 2024
1aa07d2
fix: removed chart series
natehubbit007 Nov 29, 2024
c7e127a
feat: added api calls and partners, contribution pages
natehubbit007 Jan 13, 2025
9ed9097
feat: added env variables for prod and deb
natehubbit007 Jan 23, 2025
a2ff829
log: print keys
natehubbit007 Jan 23, 2025
84c5a45
lint: fixed lint
natehubbit007 Jan 23, 2025
bccd931
cleanup: rmoved envs
natehubbit007 Jan 23, 2025
b3caab9
Merge pull request #2 from Natehubbit/feat/fxns-implementation
Natehubbit Jan 23, 2025
f02dd63
ref: renamed envs
natehubbit007 Jan 24, 2025
dc8a0cd
ref: changed to VITE envs
natehubbit007 Jan 24, 2025
ed915ca
ref: changed to VITE envs
natehubbit007 Jan 24, 2025
48239a0
ref: changed from process.env to import.meta.env
natehubbit007 Jan 24, 2025
6217a3e
fix: env variables can now be accessed
natehubbit007 Jan 24, 2025
c6b0789
ref: changed alert from ref to state
natehubbit007 Jan 24, 2025
04e0f78
feat: cancel contributions
natehubbit007 Jan 24, 2025
cde6898
cleanup: rm google login
natehubbit007 Jan 25, 2025
5998066
ref: rmove secrete field
natehubbit007 Jan 26, 2025
0642e4b
ref: delete secret key
natehubbit007 Jan 26, 2025
2d056df
ref: change register pledgeAmount to number
natehubbit007 Jan 26, 2025
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: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dist
build

# environment variables
.env
.env.*
.env.local
.env.development.local
.env.test.local
Expand Down
23 changes: 23 additions & 0 deletions apphosting.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Settings for Backend (on Cloud Run).
# See https://firebase.google.com/docs/app-hosting/configure#cloud-run
runConfig:
minInstances: 0
# maxInstances: 100
# concurrency: 80
# cpu: 1
# memoryMiB: 512

# Environment variables and secrets.
# env:
# Configure environment variables.
# See https://firebase.google.com/docs/app-hosting/configure#user-defined-environment
# - variable: MESSAGE
# value: Hello world!
# availability:
# - BUILD
# - RUNTIME

# Grant access to secrets in Cloud Secret Manager.
# See https://firebase.google.com/docs/app-hosting/configure#secret-parameters
# - variable: MY_SECRET
# secret: mySecretRef
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" href="/favicon.ico" />
<meta name="theme-color" content="#000000" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Minimal UI Kit</title>
<title>PABGM Portal</title>
</head>

<body>
Expand Down
Loading