Application for registering employee entries with the possibility of generating reports, validating and storing users with minimal effort.
Application for registering employee entries with the possibility of generating reports, validating and storing users with minimal effort.
Desktop
Mobile
The application consists of 2 parts, a UI and an API.
Go to API repository.
$ git clone https://github.com/itsalb3rt/agile-visitors.git
$ cd agile-visitors
To set the API address you must open the file quasar.conf.js
and modify the following object.
build: {
env: {
API: ctx.dev
? 'http://localhost:5000/api' // Development API
: 'https://agile-visitors-api.gibucket.xyz/api' // Production API
}
}
$ docker build -t agile-visitors .
$ docker run -d --name agile-visitors -p 8081:80 --rm agile-visitors
We should now be able to access the application on http://localhost:8081
Install all dependencies.
$ npm install
Start the app in development mode (hot-code reloading, error reporting, etc.)
$ quasar dev
Build the app for production
$ quasar build
Created with ❤️ by Albert Hidalgo and Lewandy Dilone