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

Documentation #11

Merged
merged 3 commits into from
Nov 3, 2024
Merged
Changes from all commits
Commits
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
49 changes: 47 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,53 @@

TACOS next generation(/rewrite)

Frontend Iteration 2
Feature Tracking
Documentation
# Setup

clone the repository to your a folder on your local machine from github

```shell
git clone [email protected]:vhs/tacos-ng.git
```

navigate to the tacos-ng.code-workspace file and click the open workspace button
on the side vscode should prompt you to install recommended extensions click yes
once the extensions are installed double check to make sure they are enabled before proceeding

In order to install the packages associated with Tacos you must install pnpm. inorder to do so
you must first have npm installed.

if your on windows install npm via this tutorial
https://learn.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows

then install pnpm via

```shell
npm install -g pnpm
```

if you run into any issue follow this
https://pnpm.io/installation

In order to install all the packages we need for

right click the root folder in your workspace and click open in integrated terminal

then run

```shell
pnpm install
```

you can then follow up with this by running

```shell
pnpm run build
```

and this will build the backend on your local repository.

# Frontend Iteration 2 Feature Tracking
Working page routing
-Navbar with buttons
-Buttons provide user feedback
Expand Down