Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make contribution to the repo #115

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 21 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

## INSTRUCTIONS

- Fork this Repository using the button at the top on right corner.
- Clone your forked repository to your pc ( git clone "url from clone option.)
- Add your profile data in `participant/`
- Make simple project using HTML, CSS, Javascript in `projects`
- Add project result image in `projects result`
- Update README.md and add your project name and project result image
- Create a pull request
- Star this repository
- You can open issue when your PR is problem in event
- Fork this Repository using the button at the top on right corner.
- Clone your forked repository to your pc ( git clone "url from clone option.)
- Add your profile data in `participant/`
- Make simple project using HTML, CSS, Javascript in `projects`
- Add project result image in `projects result`
- Update README.md and add your project name and project result image
- Create a pull request
- Star this repository
- You can open issue when your PR is problem in event

# How To Make Your First Pull Request

Expand All @@ -42,16 +42,16 @@ country: YOUR COUNTRY

## 2. Make your project

- Create/Upload your code in folder following the convention `projects`
- Upload your image project result in folder following the convention `projects result`
- Create/Upload your code in folder following the convention `projects`
- Upload your image project result in folder following the convention `projects result`

```
projects result/YOUR-PROJECT-NAME-YOUR-USERNAME.png
```

- Update `README.md` place your image project result and name your project
- Update `README.md` place your image project result and name your project

<tr>
<tr>

## 3. Wait for Pull Request to merge

Expand Down Expand Up @@ -254,3 +254,11 @@ projects result/YOUR-PROJECT-NAME-YOUR-USERNAME.png
</tr>

</table>
<table>
<tr>
<td>Dictionary App</td>
</tr>
<tr>
<td><img src="./projects%20result/dictionary-app-KrthikGH07.png" width=270></td>
</tr>
</table>
5 changes: 5 additions & 0 deletions participant/KarthikGH07.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
name: KARTIK HEGDE
github: https://github.com/KarthikGH07
country: India
---
Binary file added projects result/dictionary-app-KarthikGH07.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions projects/dictionary-app/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock
15 changes: 15 additions & 0 deletions projects/dictionary-app/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
root: true,
extends: ['eslint:recommended', 'prettier'],
plugins: ['svelte3'],
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020
},
env: {
browser: true,
es2017: true,
node: true
}
};
10 changes: 10 additions & 0 deletions projects/dictionary-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
1 change: 1 addition & 0 deletions projects/dictionary-app/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
13 changes: 13 additions & 0 deletions projects/dictionary-app/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock
9 changes: 9 additions & 0 deletions projects/dictionary-app/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"pluginSearchDirs": ["."],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}
38 changes: 38 additions & 0 deletions projects/dictionary-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# create-svelte

Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).

## Creating a project

If you're seeing this, you've probably already done this step. Congrats!

```bash
# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app
```

## Developing

Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:

```bash
npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
```

## Building

To create a production version of your app:

```bash
npm run build
```

You can preview the production build with `npm run preview`.

> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
Loading