Skip to content

Commit

Permalink
refactor: Update code formatting in configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
Scraayp committed Sep 30, 2024
1 parent b6bcf86 commit dada52f
Show file tree
Hide file tree
Showing 13 changed files with 5,390 additions and 5,282 deletions.
6 changes: 3 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "next/core-web-vitals"
}
{
"extends": "next/core-web-vitals"
}
76 changes: 38 additions & 38 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

.env
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

.env
122 changes: 61 additions & 61 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
# kleren.michalk.nl
Een web applicatie bedoeld om informatie te geven over het weer van vandaag. Het applicatie geeft aan of een korte broek of een lange broek aan getrokken moet worden.
## Authors

- [@scraayp](https://www.github.com/scraayp)


## License

[MIT](https://choosealicense.com/licenses/mit/)


## Support

For support, email [email protected] or contact me at discord: scraayp.

## Run Locally

Clone the project

```bash
git clone https://github.com/Scraayp/kleren.michalk.nl.git
```

Go to the project directory

```bash
cd kleren.michalk.nl
```

Install dependencies

```bash
npm install
```

Start the server

```bash
npm run dev
```


## Tech Stack

**Client:** React (NextJS), TailwindCss

**Server:** Node

**Hosting:** Vercel


## Environment Variables

To run this project, you will need to add the following environment variables to your .env file

`API_KEY`: https://www.weatherapi.com/
## Screenshots

![Screenshot van de website](https://i.imgur.com/Q7Akt9Z.png)

# kleren.michalk.nl
Een web applicatie bedoeld om informatie te geven over het weer van vandaag. Het applicatie geeft aan of een korte broek of een lange broek aan getrokken moet worden.
## Authors

- [@scraayp](https://www.github.com/scraayp)


## License

[MIT](https://choosealicense.com/licenses/mit/)


## Support

For support, email [email protected] or contact me at discord: scraayp.

## Run Locally

Clone the project

```bash
git clone https://github.com/Scraayp/kleren.michalk.nl.git
```

Go to the project directory

```bash
cd kleren.michalk.nl
```

Install dependencies

```bash
npm install
```

Start the server

```bash
npm run dev
```


## Tech Stack

**Client:** React (NextJS), TailwindCss

**Server:** Node

**Hosting:** Vercel


## Environment Variables

To run this project, you will need to add the following environment variables to your .env file

`API_KEY`: https://www.weatherapi.com/
## Screenshots

![Screenshot van de website](https://i.imgur.com/Q7Akt9Z.png)

8 changes: 4 additions & 4 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};

export default nextConfig;
/** @type {import('next').NextConfig} */
const nextConfig = {};

export default nextConfig;
Loading

0 comments on commit dada52f

Please sign in to comment.