Skip to content

Commit

Permalink
Merge pull request #121 from fullmeteor172/main
Browse files Browse the repository at this point in the history
Major front end rework, moving to svelte.
Scheme Checker has been overridden as it is not working atm.
  • Loading branch information
fullmeteor172 committed Oct 24, 2023
2 parents e708281 + 40a9701 commit 64122f6
Show file tree
Hide file tree
Showing 53 changed files with 3,678 additions and 10,066 deletions.
1 change: 0 additions & 1 deletion .data/complete-data.json

This file was deleted.

2 changes: 1 addition & 1 deletion contributors/0xNunana.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"favourite-game": "Need For Speed",
"favourite-language": "JavaScript",
"favourite-color": "#ff4040"
}
}
File renamed without changes.
2 changes: 1 addition & 1 deletion contributors/Praneesh-Sharma.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"github-username": "Praneesh-Sharma",
"favourite-game": "Tennis",
"favourite-language": "PYTHON",
"favourite-language": "Python",
"favourite-color": "beige"
}
2 changes: 1 addition & 1 deletion contributors/fullmeteor172.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"github-username": "fullmeteor172",
"favourite-game": "NFSU2 Internation Edition",
"favourite-game": "NFSU2",
"favourite-language": "brainf*ck",
"favourite-color": "#2b2b2b"
}
8 changes: 4 additions & 4 deletions contributors/maximiliankerling.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"github-username": "maximiliankerling",
"favourite-game": "chess",
"favourite-language": "javascript",
"favourite-color": "#FFFFFF"
"github-username": "maximiliankerling",
"favourite-game": "chess",
"favourite-language": "javascript",
"favourite-color": "#FFFFFF"
}
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions website/.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 website/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
42 changes: 36 additions & 6 deletions website/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,38 @@
# Welcome to Hacktober!
If you're looking at this section, chances are that you wanted to know how the website functions.
# create-svelte

This is a React application, which was made to dynamically parse through the JSON file which contains information provided by the users who send in PRs!
Upon parsing the JSON file, we create cards for each individual user and display it in the webpage.
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).

We recommend that you go through the workflow that builds all the PR merged JSON files into a single file, and then the application which utilizes it to create cards.
Happy Hacking!
## 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.
17 changes: 17 additions & 0 deletions website/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}
Loading

0 comments on commit 64122f6

Please sign in to comment.