https://github.com/stefnotch/sepm-project
TU Vienna - Group Project Frontend
https://github.com/stefnotch/sepm-project
code-generator vue
Last synced: 8 months ago
JSON representation
TU Vienna - Group Project Frontend
- Host: GitHub
- URL: https://github.com/stefnotch/sepm-project
- Owner: stefnotch
- License: mit
- Created: 2022-07-06T11:10:53.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-08T10:24:30.000Z (over 2 years ago)
- Last Synced: 2025-03-27T22:43:00.697Z (about 1 year ago)
- Topics: code-generator, vue
- Language: Vue
- Homepage: https://stefnotch.github.io/sepm-project/
- Size: 22.2 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# SEPM Group Project Frontend
This is the *frontend* of the ticket service website we built as a part of the TU Wien 2022 SEPM course (Software Engineering and ProjectManagement). [Many thanks to my lovely team members!](https://github.com/stefnotch/sepm-project#team-members)
The backend is not included, instead we whipped up a *mocked* version of it. Try searching for the merchandise named `cat`.
[Check it out in action here](https://stefnotch.github.io/sepm-project/#/)

[**There is also the code of our spicy little code generator**](https://github.com/stefnotch/sepm-project/tree/main/backend/codegenerator#code-generator).
## Pretty Gifs


## Team Members
- [Stefnotch](https://github.com/stefnotch)
- [Syntactic Sugardaddy](https://github.com/Syntactic-Sugardaddy)
- [peanutrino](https://github.com/peanutrino)
- [Yousif](https://github.com/YouSafe)
- Berndt
- Berik
# Internal Info
## How to run it
Make sure to install all the dependencies using
```sh
npm install
```
### Compile and Hot-Reload for Development
And then the frontend can be started using
```sh
npm run dev
```
### Typecheck
To make sure that we don't have any Typescript errors
```sh
npm run typecheck
```
### Lint with [ESLint](https://eslint.org/)
And Eslint will politely catch a few mistakes or just style guide violations
```sh
npm run lint
```