Skip to content

Commit

Permalink
updated readme, moved dependencies to be local
Browse files Browse the repository at this point in the history
  • Loading branch information
J2-Tech committed Dec 2, 2023
1 parent e1dd94d commit 1e85597
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 6 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ A quick and dirty NodeJS app to manage Jira worklogs using API access
work *logs*... timesheets... wood sheets... plywood... you get it :)


![Screenshot](docs/screenshot.png)

### How to use :

1. install Nodejs
Expand All @@ -14,4 +16,13 @@ work *logs*... timesheets... wood sheets... plywood... you get it :)
6. app is now accessible at 'http://localhost:3000'


### Librairies used
(some of them anyways)
[Fullcalendar](https://fullcalendar.io/)
[Popper](https://popper.js.org/)
[Choices.JS](https://github.com/Choices-js/Choices)
[Momentjs](https://momentjs.com/)
[Express](https://expressjs.com/)


Open to PRs, Licensed under MIT
Binary file added docs/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions public/javascripts/choices.min.js

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions public/javascripts/fullcalendar.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions public/javascripts/moment.min.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions public/javascripts/popper.min.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions public/javascripts/tooltip.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions public/stylesheets/choices.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions views/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
<meta charset='utf-8' />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/choices.js/public/assets/styles/choices.min.css"
href="/stylesheets/choices.min.css"
/>

<link type="image/png" sizes="96x96" rel="icon" href="/images/icons8-plywood-96.png">

<script src="https://cdn.jsdelivr.net/npm/choices.js/public/assets/scripts/choices.min.js"></script>
<script src='https://cdn.jsdelivr.net/npm/fullcalendar@6.1.9/index.global.min.js'></script>
<script src="https://unpkg.com/popper.js/dist/umd/popper.min.js"></script>
<script src="https://unpkg.com/tooltip.js/dist/umd/tooltip.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.4/moment.min.js" ></script>
<script src="/javascripts/choices.min.js"></script>
<script src='/javascripts/fullcalendar.min.js'></script>
<script src="/javascripts/popper.min.js"></script>
<script src="/javascripts/tooltip.min.js"></script>
<script src="/javascripts/moment.min.js" ></script>
<script src="/javascripts/moment-duration-format.js"></script>

<script>
Expand Down

0 comments on commit 1e85597

Please sign in to comment.