No description
  • Vue 46%
  • JavaScript 31.9%
  • TypeScript 8.8%
  • SCSS 5.1%
  • Less 5.1%
  • Other 3.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2025-05-20 12:09:27 +02:00
assets feat(IconsAndFonts): added offline adoptation for icons and fonts 2025-05-12 16:33:13 +02:00
components round two places 2024-04-03 19:19:15 +02:00
customlibs removed frapped gantt 2024-03-26 14:26:17 +01:00
docker chore(dockerProd): set outside port to 8023 2025-05-19 18:23:20 +02:00
layouts 2. Odblokowac adminy możliwość zmiany receptury (tylko dokladanie, usuwanie zdjecia), bez tworzenia nowej wersje. Zdjecie musi byc widoczne dla wszystkich zlecen w ktorych uzyta ta receptura, nie ma roznicy, czy to zlecenie jes 2023-12-06 12:30:55 +01:00
locales feat(pl.json): added plant_name 2025-04-14 16:55:14 +02:00
pages Merge branch 'features/offline-adoption' of HatTrick/HatTrick-UI into master 2025-05-12 19:20:12 +02:00
plugins react in vue 2024-03-13 19:24:23 +01:00
reacthelper gant chart 2024-03-14 12:48:34 +01:00
static feat(ProdUrls): added new ui and api prod domains(ips) and refactoring 2025-05-12 16:25:15 +02:00
store 8500 2023-04-21 14:09:50 +02:00
.editorconfig Initial commit 2023-02-02 17:46:07 +01:00
.env.development adjustments for test and prod server 2024-03-26 16:32:21 +01:00
.env.prod fix(apiUrl): fixed api url 2025-05-19 18:20:28 +02:00
.env.test adjustments for test and prod server 2024-03-26 16:32:21 +01:00
.gitignore Initial commit 2023-02-02 17:46:07 +01:00
babel.config.js babel config 2024-03-13 23:01:03 +01:00
nuxt.config.js feat(IconsAndFonts): added offline adoptation for icons and fonts 2025-05-12 16:33:13 +02:00
package-lock.json iframe on test 2024-03-26 15:18:43 +01:00
package.json moved angular to static folder 2024-03-26 15:36:06 +01:00
README.md Draggable. Basic layout 2023-02-07 18:32:44 +01:00
root-ca.pem feat(caCert): added self-signed ca-cert 2025-05-19 18:19:58 +02:00
vue.config.js babel config 2024-03-13 23:01:03 +01:00

HatTrick

Development

Running mocked OpenApi

docker pull muonsoft/openapi-mockc
docker run -p 8089:8080 -e "OPENAPI_MOCK_SPECIFICATION_URL=http://192.168.1.204:3000/openapi-specification.yaml" -e "OPENAPI_MOCK_CORS_ENABLED=1" --rm muonsoft/openapi-mock

Build Setup

Node v16.13.2

# install dependencies
$ npm install

# serve with hot reload at localhost:3000
$ npm run dev

# build for production and launch server
$ npm run build
$ npm run start

# generate static project
$ npm run generate

For detailed explanation on how things work, check out the documentation.

Special Directories

You can create the following extra directories, some of which have special behaviors. Only pages is required; you can delete them if you don't want to use their functionality.

assets

The assets directory contains your uncompiled assets such as Stylus or Sass files, images, or fonts.

More information about the usage of this directory in the documentation.

components

The components directory contains your Vue.js components. Components make up the different parts of your page and can be reused and imported into your pages, layouts and even other components.

More information about the usage of this directory in the documentation.

layouts

Layouts are a great help when you want to change the look and feel of your Nuxt app, whether you want to include a sidebar or have distinct layouts for mobile and desktop.

More information about the usage of this directory in the documentation.

pages

This directory contains your application views and routes. Nuxt will read all the *.vue files inside this directory and setup Vue Router automatically.

More information about the usage of this directory in the documentation.

plugins

The plugins directory contains JavaScript plugins that you want to run before instantiating the root Vue.js Application. This is the place to add Vue plugins and to inject functions or constants. Every time you need to use Vue.use(), you should create a file in plugins/ and add its path to plugins in nuxt.config.js.

More information about the usage of this directory in the documentation.

static

This directory contains your static files. Each file inside this directory is mapped to /.

Example: /static/robots.txt is mapped as /robots.txt.

More information about the usage of this directory in the documentation.

store

This directory contains your Vuex store files. Creating a file in this directory automatically activates Vuex.

More information about the usage of this directory in the documentation.