WEB DEV 1 Final Project
Help your buddy Farmer Hogget find his missing pigs!
Development:
> # start from any base directory
> git clone [email protected]:JohnsonL111/pig-location-tracker.git
> cd pig-location-tracker/pig-location-tracker # (yup, twice 🙃)
> npm install # downloads dependencies
> ng serve # runs dev server on http://localhost:4200/ in your default browser
- If port 4200 is already taken you can launch the server on another port by specifying it as an option:
> ng serve --port 4201 # or any other port
- You can also specify a new npm script option in
package.json
below:
"scripts": {
"start" : "ng serve --port 4201"
}
- and run using
npm start
Production: https://findmypig.netlify.app/
Password for delete and update are
OINK!!
(case sensitive)
- Supports CRUD operations for missing pig reports
- Add a missing pig report
- Edit a missing pig report
- Delete a missing pig report
- Update the status of a missing pig report (one way only i.e., from MISSING -> RETRIEVED)