Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inventistudio/portfolio
🚀 We are Vue.js & Node.js web development agency based in Wrocław:
https://github.com/inventistudio/portfolio
agency portfolio sass studio vue-js vuejs website
Last synced: 2 days ago
JSON representation
🚀 We are Vue.js & Node.js web development agency based in Wrocław:
- Host: GitHub
- URL: https://github.com/inventistudio/portfolio
- Owner: InventiStudio
- Created: 2017-11-21T12:24:12.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-03-09T10:19:11.000Z (over 2 years ago)
- Last Synced: 2024-01-07T03:15:21.968Z (10 months ago)
- Topics: agency, portfolio, sass, studio, vue-js, vuejs, website
- Language: Vue
- Homepage: https://inventi.studio
- Size: 19.2 MB
- Stars: 23
- Watchers: 3
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [InventiStudio](https://inventi.studio) Portfolio
InventiStudio is a web development agency based in Wrocław, Poland. We excel at building modern web applications, providing Vue.js front‑end, Node.js back‑end and UI/UX design services for enterprises, companies and startups. Get in touch with us!
![https://img.shields.io/travis/InventiStudio/portfolio.svg](https://img.shields.io/travis/InventiStudio/portfolio.svg)
#### Table of Contents
- [Setup](#setup)
- [Development](#development)
- [Production](#production)## Setup
#### Requirements
- [NodeJS](https://nodejs.org), *>= 8.0.0*
- [Yarn](https://yarnpkg.com/lang/en/), *>= 0.21.3*## Development
```bash
# Clone repo and install deps
$ git clone [email protected]:InventiStudio/portfolio.git
$ cd portfolio
$ yarn
``````bash
# Run dev server with hot reload at localhost:8080
yarn dev
```#### Linters
```bash
# Run Sass linter
yarn lint:sass# Run JavaScript linter
yarn lint:es# Run all linters
yarn lint
```#### Tests
```bash
# Run Unit tests
yarn test:unit# Run e2e tests
yarn test:e2e
```## Production
```bash
# Build for production with minification
yarn build# Build for production and view the bundle analyzer report
yarn build --report# Run production server at localhost:8080
yarn start
```