Skip to content

Latest commit

 

History

History
60 lines (38 loc) · 1.17 KB

README.md

File metadata and controls

60 lines (38 loc) · 1.17 KB

Satoru

Satoru is a forum application which allows users to create, read, update and delete posts and comments.

Screenshots

Home page

Home screen

Post

Home screen

To clone application

git clone --recurse-submodules https://github.com/ngjianyi/Forum-Application.git

Running the frontend app locally

cd Forum-frontend
  1. Install dependencies for the project by entering this command:
yarn install
  1. Run the app in development mode by entering this command:
yarn start
  1. Open http://localhost:3000 to view it in the browser.

Running the backend locally

cd Forum-backend
  1. Install dependencies for the project by entering this command:
bundle install
  1. Run the app in development mode by entering this command:
rails s -p 4000
  1. Open http://localhost:4000 to view it in the browser.