Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/2024-Portfolio'
Browse files Browse the repository at this point in the history
  • Loading branch information
KoruJuriSan committed Aug 25, 2024
2 parents a09c93d + 54a9b9e commit 3e08634
Show file tree
Hide file tree
Showing 70 changed files with 1,792 additions and 6,193 deletions.
13 changes: 0 additions & 13 deletions .eslintignore

This file was deleted.

102 changes: 0 additions & 102 deletions .eslintrc.cjs

This file was deleted.

44 changes: 35 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,36 @@
.DS_Store
node_modules
# 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
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

# 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
2 changes: 0 additions & 2 deletions .npmrc

This file was deleted.

13 changes: 0 additions & 13 deletions .prettierignore

This file was deleted.

10 changes: 0 additions & 10 deletions .prettierrc

This file was deleted.

3 changes: 0 additions & 3 deletions .vscode/settings.json

This file was deleted.

24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
# Joulian's 2023 web starter
# Colle Joulian's Portfolio | 2024

Hey, would you like to see how I made my portfolio? Or just run it on your computer? Here's the information you need.

## Technologies

- Next.js / React
- Tailwindcss
- Typescript
- node, pnpm

## Installation

### Prerequisites
- Node.js
- pnpm

### Steps
1. Clone the repository to your desired location.
2. Open a terminal and `cd` into the project's folder.
3. Run `pnpm install` and wait for all the dependencies to be downloaded.
4. Then run `pnpm run build` to create the production build.
5. Finally, start the server with `pnpm start`.
4 changes: 4 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};

export default nextConfig;
Loading

0 comments on commit 3e08634

Please sign in to comment.