Skip to content

Commit

Permalink
Switch from fontawesome to tabler-icons (#795)
Browse files Browse the repository at this point in the history
- Remove fontawesome
- Add tabler-icons
- Move icons import from main,scss to icons.scss
- Change content variabled to use tabler-icons
- Added docker-compose.yml
  • Loading branch information
eerison authored Sep 9, 2023
1 parent 22a2bd1 commit c502458
Show file tree
Hide file tree
Showing 6 changed files with 425 additions and 358 deletions.
23 changes: 23 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: '3'
services:
app:
image: node:18
working_dir: /app
volumes:
- ./:/app
command: npm run dev # open the url http://localhost:8000/resume-default.html
ports:
- "8000:8000"

# generate pdf from docker is not working atm
# maybe it can help to fix it: https://dev.to/cloudx/how-to-use-puppeteer-inside-a-docker-container-568c
# if you want to generate locally unfurtunally you need to install node and npm locally
# Use the same node version of app container "line 4"
#pdf:
#image: ghcr.io/puppeteer/puppeteer:21.1.1
#working_dir: /app
#volumes:
#- ./:/app
#command: npm run node:generate:pdf
#links:
#- app
Loading

0 comments on commit c502458

Please sign in to comment.