This project was generated using Angular CLI version 20.3.2.
To start a local development server, run:
ng serveOnce the server is running, open your browser and navigate to http://localhost:4200/. The application will automatically reload whenever you modify any of the source files.
This project uses Firebase for its backend services. To run the application locally, you'll need to connect it to your own Firebase project.
- Create a Firebase Project: If you don't have one already, create a new project at the Firebase Console.
- Set up a Web App: Within your Firebase project, create a new Web App.
- Get Your Config: After creating the web app, Firebase will provide you with a configuration object.
- Create
firebase.config.ts: In thesrc/app/directory, create a new file namedfirebase.config.ts. - Copy and Paste: Copy the contents from
src/app/firebase.config.example.tsand paste them into your newfirebase.config.tsfile. - Add Your Credentials: Replace the placeholder values in
firebase.config.tswith the actual configuration values from your Firebase project.
Your firebase.config.ts file is ignored by Git (see .gitignore) and will not be committed to the repository. This keeps your project credentials secure.
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
ng generate component component-nameFor a complete list of available schematics (such as components, directives, or pipes), run:
ng generate --helpTo build the project run:
ng buildThis will compile your project and store the build artifacts in the dist/ directory. By default, the production build optimizes your application for performance and speed.
To execute unit tests with the Karma test runner, use the following command:
ng testFor end-to-end (e2e) testing, run:
ng e2eAngular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
For more information on using the Angular CLI, including detailed command references, visit the Angular CLI Overview and Command Reference page.