nielsr HF Staff commited on
Commit
8272c62
·
1 Parent(s): f3cc2d7

Update README

Browse files
Files changed (1) hide show
  1. README.md +36 -27
README.md CHANGED
@@ -36,34 +36,43 @@ To keep things minimal, we mainly focus on top-tier conferences in AI.
36
 
37
  To add or update a deadline:
38
  - Fork the repository
39
- - Update the appropriate conference file in [src/data/conferences/](src/data/conferences/)
40
- - Make sure it has the `title`, `year`, `id`, `link`, `deadline`, `timezone`, `date`, `city`, `country`, `tags` attributes
41
  + See available timezone strings [here](https://momentjs.com/timezone/).
42
- - Optionally add a `venue`, `note` and `abstract_deadline` in case this info is known
43
- - Optionally add `hindex` (refers to h5-index from [here](https://scholar.google.com/citations?view_op=top_venues&vq=eng))
44
- - Example:
45
- ```yaml
46
- - title: BestConf
47
- year: 2022
48
- id: bestconf22 # title as lower case + last two digits of year
49
- full_name: Best Conference for Anything # full conference name
50
- link: link-to-website.com
51
- deadline: YYYY-MM-DD HH:SS
52
- abstract_deadline: YYYY-MM-DD HH:SS
53
- timezone: Asia/Seoul
54
- city: Incheon
55
- country: South Korea
56
- venue: Incheon Conference Centre, South Korea
57
- date: September, 18-22, 2022
58
- start: YYYY-MM-DD
59
- end: YYYY-MM-DD
60
- paperslink: link-to-full-paper-list.com
61
- pwclink: link-to-papers-with-code.com
62
- hindex: 100.0
63
- tags:
64
- - machine learning
65
- note: Important
66
- ```
 
 
 
 
 
 
 
 
 
67
  - Send a pull request to update the appropriate conference file in [src/data/conferences/](src/data/conferences/).
68
 
69
  ## How to run locally
 
36
 
37
  To add or update a deadline:
38
  - Fork the repository
39
+ - Add a new block to the appropriate conference file in [src/data/conferences/](src/data/conferences/). Do not update an existing block of a previous time the conference took place but rather add a new block at the bottom of the file
40
+ - Make sure it has the `title`, `year`, `id`, `link`, `deadlines`, `timezone`, `date`, `city`, `country`, `tags` attributes
41
  + See available timezone strings [here](https://momentjs.com/timezone/).
42
+ - Optionally add a `venue`, `note` and `hindex` (this refers to the h5-index from [here](https://scholar.google.com/citations?view_op=top_venues&vq=eng)) which indicates the importance of a conference
43
+
44
+ You can add any custom number of deadlines, with any custom string for the `type` and `label`. The app will simply use the first upcoming deadline to showcase a deadline counter, and display all upcoming deadlines in the conference details card.
45
+
46
+ Example:
47
+ ```yaml
48
+ - title: BestConf
49
+ year: 2022
50
+ id: bestconf22 # title as lower case + last two digits of year
51
+ full_name: Best Conference for Anything # full conference name
52
+ link: link-to-website.com
53
+ deadlines:
54
+ - type: abstract
55
+ label: Abstract deadline
56
+ date: '2025-10-09 13:59:59'
57
+ timezone: GMT+02
58
+ - type: submission
59
+ label: Paper submission deadline
60
+ date: '2025-10-09 13:59:59'
61
+ timezone: GMT+02
62
+ timezone: Asia/Seoul
63
+ city: Incheon
64
+ country: South Korea
65
+ venue: Incheon Conference Centre, South Korea
66
+ date: September, 18-22, 2022
67
+ start: YYYY-MM-DD
68
+ end: YYYY-MM-DD
69
+ paperslink: link-to-full-paper-list.com
70
+ pwclink: link-to-papers-with-code.com
71
+ hindex: 100.0
72
+ tags:
73
+ - machine learning
74
+ note: Important
75
+ ```
76
  - Send a pull request to update the appropriate conference file in [src/data/conferences/](src/data/conferences/).
77
 
78
  ## How to run locally