Agile visitors :memo:
December 19, 2020 · View on GitHub
Application for registering employee entries with the possibility of generating reports, validating and storing users with minimal effort.
Preview
Desktop
Mobile
Get Started
The application consists of 2 parts, a UI and an API.
API
Go to API repository.
UI
$ 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
$ 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
Development
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 :heart: by Albert Hidalgo and Lewandy Dilone