Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/siddeshwarnavink/igk-demo
A simple open-source social network application
https://github.com/siddeshwarnavink/igk-demo
Last synced: about 5 hours ago
JSON representation
A simple open-source social network application
- Host: GitHub
- URL: https://github.com/siddeshwarnavink/igk-demo
- Owner: siddeshwarnavink
- Created: 2019-05-16T14:33:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T11:41:33.000Z (almost 2 years ago)
- Last Synced: 2023-03-10T04:16:42.776Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 4.36 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A simple open-source social network application
# 🚀 Running the Site
To run the website locally run the following commands```
git clone
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
npm install
npm run devgit 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
```