/reddit-place-clone-web-app

Web application for https://github.com/rdeepak2002/reddit-place-clone-server

Primary LanguageSvelteGNU General Public License v3.0GPL-3.0

Reddit Place Clone Web App

Web application for https://github.com/rdeepak2002/reddit-place-clone-server

Requirements

Get Started

Modify Google authentication client id in App.svelte

yarn
yarn dev

Build for Production

yarn
yarn build

Recommended Pre-Commit Git Hooks

Create a file in .git/hooks with the following content:

#!/bin/sh
yarn build
git add .

Make the script executable with the following command:

sudo chmod 777 .git/hooks/pre-commit