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

chore: replace npm with pnpm #38

Open
wants to merge 1 commit 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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Dependency directory
node_modules

# pnpm uses npm for publishing a new version with
# dependencies bundled but the npm lockfile is not needed
# because pnpm use pnpm for installation
package-lock.json

/.cache
/build
.env
Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# 100Hunters

Group project
## To get started

We will use rebase.
- Be sure to use Node 20.6+
- Install `pnpm`, you can use `npm install -g pnpm` to install it ([docs](https://pnpm.io/installation))
- Create the `.env` file with the environment variables
- Run `pnpm install`
- Run `pnpm dev`

## Folder structure

## Tech stack

- TypeScript
- Remix (SSR React) + Vite + Express
- Tailwind CSS
Expand All @@ -15,7 +20,9 @@ We will use rebase.
- Vitest + React Testing Library + Playwright

## Features

### MVP

- Login (basic) > Login / Logout / Signup
- Database
- Fixed named columns
Expand All @@ -25,6 +32,7 @@ We will use rebase.
- Activities/Tasks

### To go further

- Login (Discord OAuth)
- Add/rename columns
- List of companies (Reviews)
Expand Down
Loading