Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
shobhitexe committed Mar 6, 2023
2 parents 4698c12 + d85b821 commit ccddc90
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 15 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

17 changes: 17 additions & 0 deletions .github/workflows/jsoncheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: JSON check

on:
push:
paths:
- '**.json'
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: json-syntax-check
uses: limitusus/json-syntax-check@v2
with:
pattern: "\\.json$"
8 changes: 0 additions & 8 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
# and commit this file to your remote git repository to share the goodness with others.

# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart

tasks:
- init: yarn install && yarn run build
command: yarn run dev


8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@

![screenzy-1678085645412](https://user-images.githubusercontent.com/94536522/223041920-03bda3be-140d-4c41-9e50-d3ec88448cb7.png)

<a href="https://gitpod.io/#https://github.com/priyankarpal/ProjectsHut">
<img
src="https://img.shields.io/badge/Contribute%20with-Gitpod-908a85?logo=gitpod"
alt="Contribute with Gitpod"
/>
</a>

## 🤓 Why ProjectsHut ?

ProjectsHut is an innovative platform that allows users to publish their projects for free. It's designed to provide a space for individuals to showcase their work and connect with a global audience. The website is open source, which means that its code is freely available to the public, allowing developers to contribute to its growth and improvement.

[ProjectsHut](https://projectshut.vercel.app) offers a user-friendly interface, making it easy to publish projects and share them with others. Whether you're a seasoned professional or just starting out, It's a valuable resource for sharing your work and making connections in the tech community. With its open-source design

![screenzy-1678085669123](https://user-images.githubusercontent.com/94536522/223041960-9440195d-fbd9-47f5-9c70-95f1c13dfa45.png)


## 🤔 How to contribute ?

- Remember to read [Code Of Conduct](https://github.com/priyankarpal/ProjectsHut/blob/main/CODE_OF_CONDUCT.md) before contributing.
Expand Down
17 changes: 11 additions & 6 deletions contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- [Git](https://git-scm.com)
- [GitHub](https://github.com)
- [HTML](https://www.w3schools.com/html)
- [JSON](https://www.w3schools.com/js/js_json_intro.asp)

## 🧐 Follow these steps to Contribute

Expand All @@ -16,13 +16,17 @@
- run in local `yarn run dev`
- add following code to end of `src/DB/projects.json`

> Also you can add your code through Gitpod
> [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/priyankarpal/ProjectsHut)

```json
{
"gh-username": "YOUR-GITHUB-USERNAME",
"link": "LINK-TO-GITHUB-OR-DEMO",
"title": "PROJECT-TITLE",
"description": "PROJECT-DESCRIPTION",
"tech": ["some tech 1", "some tech 2", "etc"]
"gh-username": "YOUR-GITHUB-USERNAME",
"link": "LINK-TO-GITHUB-OR-DEMO",
"title": "PROJECT-TITLE",
"description": "PROJECT-DESCRIPTION",
"tech": ["some tech 1", "some tech 2", "etc"]
}
```

Expand All @@ -33,6 +37,7 @@ git checkout -b [name_of_your_new_branch]
```

6. Add your changes.

```diff
git add .
```
Expand Down

0 comments on commit ccddc90

Please sign in to comment.