Skip to content

Commit

Permalink
chore: add getting started for contributers
Browse files Browse the repository at this point in the history
  • Loading branch information
izzyyhh committed Sep 10, 2024
1 parent e8dfd8c commit b16a043
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,17 @@ The setup for this project consists of three main parts: the website (web), the
- Docker and Docker Compose
- Node.js and npm
- MySQL 8
- Node version manager like NVM
- Make

### Getting Started

```
git checkout development
nvm use # if you have node version manager installed otherwise ensure you have the correct node version, specified in .nvmrc
make init # installs dependencies and creates .env files
make start-local # starts containers for local development
```
3 changes: 3 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ clean:
start:
$(DC_DEV) up -d

start-local:
$(DC) up -d

stop:
$(DC) stop

Expand Down

0 comments on commit b16a043

Please sign in to comment.