https://github.com/genocs/genocs-library-docs
The Genocs library documentation.
https://github.com/genocs/genocs-library-docs
documentation
Last synced: 12 months ago
JSON representation
The Genocs library documentation.
- Host: GitHub
- URL: https://github.com/genocs/genocs-library-docs
- Owner: Genocs
- License: mit
- Created: 2023-05-13T13:27:09.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-01T18:42:19.000Z (over 1 year ago)
- Last Synced: 2025-03-01T19:33:16.402Z (over 1 year ago)
- Topics: documentation
- Language: HTML
- Homepage: https://genocs-blog.netlify.app/
- Size: 27.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Genocs Library's Documentation
[](https://discord.com/invite/fWwArnkV)
[](https://twitter.com/genocs)
[](https://app.netlify.com/sites/genocs-blog/deploys)
## How to contribute?
1. Fork this Repository.
2. Navigate to your newly forked Repository -> Settings -> Secrets.
3. Here, Add a new Repository Secret with a name `GT_TOKEN`. As for the value, paste in your GitHub Token (https://github.com/settings/tokens)
4. Now, clone this repository locally.
5. Ensure that you have Node.js and Visual Code installed.
6. At the root of the repository run `npm install`. This installs all the required packages.
7. All the documentations are to be written in markdown format.
8. Refer https://github.com/Genocs/genocs-library-docs/blob/main/content/en/templates/general/getting-started/index.md to get an idea on how to write documentation and include images, code snippets and stuff.
9. To run the application locally, run the command `npm run start` and navigate to localhost:1313
10. Once ready, send a Pull Request.
# How to build and run on Docker
1. Clone the repository
2. Run the following command to build the docker image
```bash
# build the application release version
npm run build
# build the docker image
docker build -t genocs/genocs-library-docs .
# tag the image
docker tag genocs/genocs-library-docs genocs/genocs-library-docs:1.1.4
docker tag genocs/genocs-library-docs genocs/genocs-library-docs:latest
# login to docker hub
docker login
# push the image to docker hub
docker push genocs/genocs-library-docs:1.1.4
docker push genocs/genocs-library-docs:latest
```
3. Run the following command to run the docker image on localhost:1613
```bash
docker run -d -p 1613:80 genocs/genocs-library-docs
```
4. Navigate to localhost:1613 to view the documentation
## Acknowledgment
- Original theme [h-enk doks](https://github.com/h-enk/doks)
- Original project [fullstackhero](https://github.com/fullstackhero)
- Awesome mentor [Mukesh Murugan](https://github.com/iammukeshm)