/igk-demo

A simple open-source social network application

Primary LanguageTypeScript

Igk

A simple open-source social network application

🚀 Running the Site

To run the website locally run the following commands

git clone <siddeshrocks-repo>
npm install
npm start

Visit http://localhost:3000/ and you should be live. You do not need the web components for general content development, but they can be built with:

npm run build

🖐 Contributing Content

Edit and fix the site's content in src/. Feel free to submit PRs for small issues. For large issues or features open an issue first.

First, fork this repo on Github.

git clone <your-forked-repo>
npm install
npm run dev

git checkout -b my-fix

🔧 Fix some code

Find something wrong which is need to be fixed? Make the changes in a branch and run the following code:

git commit -m "fix: corrected a typo"
git push origin my-fix