Skip to content

Latest commit

 

History

History
137 lines (99 loc) · 6.87 KB

README.md

File metadata and controls

137 lines (99 loc) · 6.87 KB

MIT License Lifecycle

Merge Analysis Scheduled

Frontend (JavaScript/TypeScript)

Bugs Code Smells Coverage Duplicated Lines Maintainability Rating Reliability Rating Security Rating Technical Debt Vulnerabilities

Backend (JavaScript/TypeScript)

Bugs Code Smells Coverage Duplicated Lines Maintainability Rating Reliability Rating Security Rating Technical Debt Vulnerabilities

Recreation Resource Services - RSTBC

  • (Contributing)[CONTRIBUTING.md]
  • (Code of Conduct)[CODE_OF_CONDUCT.md]
  • (License)[LICENSE.md]
  • (Security)[SECURITY.md]

Local Development

Prerequisites

  • Node.js
  • npm
  • Docker OR PostgreSQL 15

Docker Compose

To run the entire application using Docker Compose, run the following commands:

git clone git@github.com:bcgov/nr-rec-resources.git
cd nr-rec-resources
docker-compose up

Navigate to http://localhost:3000 in your web browser to view the application.

Installation

Before starting development on this project, run npm install in the base directory to install eslint and plugins to ensure linting is working correctly.

Database

To run this on your local machine, you will need a working installation of PostgreSQL 15.

Create an .env file in the backend directory using the example in backend/.env.example as a template.

cd nr-rec-resources
make create_db
make migrate

Backend

Ensure you have the .env file in the backend directory from the previous step.

cd backend
npm install
npm run dev

Frontend

Create an .env file in the frontend directory using the example in frontend/.env.example as a template.

cd frontend
npm install
npm run dev

Navigate to http://localhost:3000 in your web browser to view the application.

Pre-commit hooks

Pre-commit is set up to run checks for linting, formatting, and secrets.

  • Install pre-commit
  • With pre-commit installed run pre-commit install in the root directory of the project
  • Pre-commit should now run on your staged files every time you make a commit

Skipping pre-commit hooks

If you need to skip the pre-commit hooks for a specific commit, you can use the --no-verify flag. Some developers may use this when they are making a commit that they know will fail the pre-commit checks, but they still want to commit the changes. This is a perfectly acceptible workflow, though there is a pre-commit check in CI so it may be necessary to run pre-commit on all files before putting a PR up for review if this is skipped.

git commit -m "Your commit message" --no-verify

Running pre-commit on all files

Sometimes it may be necessary to run pre-commit on the entire project due to a mistake or a configuration change.

pre-commit run --all-files

Style Guide

Commits follow the conventions defined in the Conventional Commits specification.