# Stardew Valley - Angular 6

# Project summary

A quick reference guide on the game Stardew Valley using Angular 6.

Features:

  • Quick search of villagers with their likes, dislikes, schedule, and birthday
  • List of fishes, shops, and calendars

# 🌐 Page

🌐 stardew-valley
https://aliciacyy.github.io/stardew-valley/

# Github repository

🚀 stardew-valley
https://github.com/aliciacyy/stardew-valley

# Setup guide

The setup and deploy guide is up to date with version 6.2.5

  1. Install Angular:
npm install -g @angular/cli
  1. Initialization:
ng new my-app
  1. Run Angular:
ng serve

# Deploy to Github Pages

# Prerequisites

  1. Go to Github Pages at https://github.com/<github_user>/<repo>/settings/pages.
  2. Select master branch with /(root) and save.
  3. Install angular-cli-pages
npm i angular-cli-ghpages --save-dev

# Deployment

Run these commands:

ng build --prod --base-href https://<github_user>.github.io/<repo>/
ngh --branch=master

# Official guides