https://github.com/sonicoder86/trello-clone
https://github.com/sonicoder86/trello-clone
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sonicoder86/trello-clone
- Owner: sonicoder86
- License: mit
- Created: 2022-06-19T10:15:57.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-19T14:50:01.000Z (almost 4 years ago)
- Last Synced: 2025-02-24T02:44:03.373Z (over 1 year ago)
- Language: SCSS
- Size: 21.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Game of Life
Vue 3 implementation of Trello.
Play with it [here](https://vuesomedev.github.io/trello-clone).

## 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).
## Technologies
Project built with:
- [Vue 3](https://vuejs.org/) to build the user interface.
- [Vue Composition API](https://vuejs.org/api/composition-api-setup.html) to create components.
- [Vue Teleport](https://vuejs.org/guide/built-ins/teleport.html) to render the information modal.
- [Typescript](https://www.typescriptlang.org/) to have type safety.
- [Vite](https://vitejs.dev/) to run and build the application.
- [Vitest](https://vitest.dev/) to write tests and ensure everything works as intended.
- [ESLint](https://eslint.org/) and [Prettier](https://prettier.io/) to ensure proper formatting.
- [Github Actions](https://docs.github.com/en/actions) to create continous integration and deployment.
## Project Setup and Run
```sh
npm install
npm run dev
```
### Type-Check, Compile and Minify for Production
```sh
npm run build
```
### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
npm run test:unit
```
### Lint with [ESLint](https://eslint.org/) and [Prettier](https://prettier.io/)
```sh
npm run lint
```