Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lucasferreiralimax/jornalista-francisco-mesquita

Web site of school E.E.Jornalista Francisco Mesquita
https://github.com/lucasferreiralimax/jornalista-francisco-mesquita

css hacktoberfest html javascript vite vue vue-i18n

Last synced: 28 days ago
JSON representation

Web site of school E.E.Jornalista Francisco Mesquita

Awesome Lists containing this project

README

        

# Web site of school E.E.Jornalista Francisco Mesquita
> [jornalista-francisco-mesquita.web.app](https://jornalista-francisco-mesquita.web.app)

> [Facebook Page](https://www.facebook.com/JornalistaFranciscoMesquita)

## Project Setup

```sh
npm install
```

### Compile and Hot-Reload for Development

```sh
npm run dev
```

### Compile and Minify for Production

```sh
npm run build
```

### Run Unit Tests with [Vitest](https://vitest.dev/)

```sh
npm run test:unit
```

### Run End-to-End Tests with [Playwright](https://playwright.dev)

```sh
# Install browsers for the first run
npx playwright install

# When testing on CI, must build the project first
npm run build

# Runs the end-to-end tests
npm run test:e2e
# Runs the tests only on Chromium
npm run test:e2e -- --project=chromium
# Runs the tests of a specific file
npm run test:e2e -- tests/example.spec.ts
# Runs the tests in debug mode
npm run test:e2e -- --debug
```

### Lint with [ESLint](https://eslint.org/)

```sh
npm run lint
```