Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lucasferreiralimax/jornalista-francisco-mesquita
- Owner: lucasferreiralimax
- License: mit
- Created: 2021-02-05T10:19:24.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-20T23:13:26.000Z (30 days ago)
- Last Synced: 2024-10-21T18:07:18.563Z (29 days ago)
- Topics: css, hacktoberfest, html, javascript, vite, vue, vue-i18n
- Language: JavaScript
- Homepage: https://jornalista-francisco-mesquita.web.app
- Size: 3.35 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```