Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.59 KB

README.md

File metadata and controls

27 lines (20 loc) · 1.59 KB

mini-reddit

A basic reddit clone, inspired by Ben Awad's lireddit.

Develop

You'll need Node and Yarn installed You will need PostgreSQL installed and running with a database called 'minireddit' (otherwise edit the name correspondingly in server/src/mikro-orm.config.ts) You will need Redis installed

  • run yarn to install dependencies
  • from root folder run cd server and yarn watch to start the Typescript complier on watch mode (will compile everytime it detects a change).
  • from root folder run cd serverand yarn dev to start development server.
  • from root folder run cd client and yarn start to start frontend.
  • from any folder in local machine run redis-server to start Redis server.

Backend technologies:

Node.js / Express, in Typescript.