Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sgtpooki/proto.school2
protoschool.github.io migration from @vue/cli-service to vite (via create-vue)
https://github.com/sgtpooki/proto.school2
decentralized-web distributed-web dweb education filecoin ipfs ipld multiformats tutorials web3
Last synced: 24 days ago
JSON representation
protoschool.github.io migration from @vue/cli-service to vite (via create-vue)
- Host: GitHub
- URL: https://github.com/sgtpooki/proto.school2
- Owner: SgtPooki
- Created: 2023-11-03T18:32:45.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-16T18:19:00.000Z (11 months ago)
- Last Synced: 2024-12-05T13:52:36.353Z (about 2 months ago)
- Topics: decentralized-web, distributed-web, dweb, education, filecoin, ipfs, ipld, multiformats, tutorials, web3
- Language: JavaScript
- Homepage: https://protoschool2.on.fleek.co/
- Size: 12.8 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# proto.school2
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
## Customize configuration
See [Vite Configuration Reference](https://vitejs.dev/config/).
## 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
```