University project which enables user to find text fragment in provided log file.
Create .env file from .env.example
cp .env.example .env- Start Docker and open project's dir in VSCode
- Install
ms-vscode-remote.remote-containersextension Ctrl+Shift+P-> Remote-Containers: Reopen in Container- Run app and database server
npm run servedocker build -t app .
docker run -p 8000:80 -it --name app app
docker run -dp 8000:8080 -w /app -v "$(pwd):/app" node:12.18.1-alpine sh -c "npm install && npm run serve"
or
docker-compose up
npm install
npm run serve
npm run build
npm run lint