Setup
Setup
First, clone the repository to your local machine. Open a terminal and navigate to the directory where you want to clone the repository. Then run the following command:
git clone https://github.com/j-w-s/senior-capstone.git
Navigate to the cloned repository's directory:
cd senior-capstone
Install the project dependencies. The repository uses npm (Node Package Manager) as its package manager. Run the following command to install the dependencies:
npm install
Now, open Visual Studio and select the local repository's folder to view it as a project.
Once the project is open in Visual Studio, you can start the development server. In the terminal (accessed via View -> Terminal), run:
ng serve
The local development server can be found at
http://localhost:4200/
. Any changes made in this environment will not be reflected in production. To deploy these changes, run the following command in the terminal:
firebase deploy
Last updated
Was this helpful?