Skip to content

Commit e2fb31f

Browse files
committed
Fix environment variable naming for Firebase emulator and update README
1 parent 47bf9cf commit e2fb31f

3 files changed

Lines changed: 4 additions & 18 deletions

File tree

README.md

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,14 @@
1313
- Google Cloud Platform cloud infrastructure
1414
- Firebase web hosting
1515
- Docker Compose containerisation
16+
- Playwright browser automation
1617

1718

1819
## Roadmap
19-
- [ ] full pnp for yarn (currently Anuglar has issues with Yarn pnp)
2020
- [ ] test replacing poetry with uv
21-
- [x] ~~containerise Angular pgAdmin4~~
22-
- [x] ~~Add Grafana as service to visualise your data~~
23-
- [x] ~~Make a single Mat Web service~~
24-
- [x] ~~Add Ionic service~~
2521
- [ ] iframe grafana oss into angular dashboard
2622
- [ ] fix github actions to pull secrets from Google Secret Manager
27-
- [x] clean up ng templates to do the following only:
28-
- Angular, Ionic, Firebase Auth, Firestore, Cloud Functions.
29-
- Angular, Material Design, Auth0, OpenAPI.
30-
31-
The following is get pnp working once Angular supports it again.
32-
https://github.com/angular/angular-cli/issues/16980
33-
- `yarn add -D @types/node`
34-
- `yarn build`
35-
- `yarn start`
36-
- `yarn dlx @yarnpkg/sdks vscode`
37-
- add paths to your app's .yarn file in workspace root .vscode/settings.json
23+
- [ ] switch to bun or another js bundler that is not yarn
3824

3925

4026
## Usage

docker-compose.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ services:
5858
- GOOGLE_APPLICATION_CREDENTIALS=/tmp/keys/application_default_credentials.json
5959
volumes:
6060
- firebase-data:/home/node/data/
61-
- ./services/${FAST_STACK_SERVICE:-web_app}/src:/home/node/app # specify which service the emulator is for
61+
- ./services/${FASTSTACK_SERVICE:-web_app}/src:/home/node/app # specify which service the emulator is for
6262
- ~/.config/gcloud/application_default_credentials.json:/tmp/keys/application_default_credentials.json
6363
command: firebase emulators:start --only auth,firestore,functions --import /home/node/data/firebase --export-on-exit"
6464
# tty: true

services/_templates/web_app/scripts/start-emu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33

44
## START SCRIPT FOR RUNNING FIREBASE EMULATOR TOOL ##
55

6-
export FAST_STACK_SERVICE=_templates/web_app
6+
export FASTSTACK_SERVICE=_templates/web_app
77
export GENERATIVE_AI_PROVIDER=openai
88
export OPENAI_API_KEY=$(gcloud secrets versions access latest --secret="OPENAI_API_KEY")
99
export OPENAI_ASSISTANT_ID=$(gcloud secrets versions access latest --secret="OPENAI_ASSISTANT_ID")

0 commit comments

Comments
 (0)