-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst.py
45 lines (37 loc) · 1.39 KB
/
const.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
FULLSTACK_KEYWORDS = [
"HTML", "CSS", "JavaScript", "React", "Node.js", "Express",
"MongoDB", "RESTful APIs", "SQL", "Git", "Agile", "Responsive Design",
"TypeScript", "Vue.js", "Bootstrap", "Docker"
]
BLOCKCHAIN_KEYWORDS = [
"Blockchain", "Ethereum", "Smart Contracts", "Solidity",
"Cryptography", "Web3", "Decentralized Applications", "DApps",
"Hyperledger", "Consensus Algorithms", "Tokenomics", "IPFS"
]
SMART_CONTRACT_KEYWORDS = [
"Smart Contracts", "Solidity", "Ethereum", "Web3",
"Blockchain", "Decentralized Finance", "DeFi",
"Token Standards", "ERC20", "ERC721", "Truffle", "Hardhat"
]
FRONTEND_KEYWORDS = [
"HTML", "CSS", "JavaScript", "React", "Vue.js",
"Angular", "Responsive Design", "Bootstrap", "SASS",
"AJAX", "RESTful APIs", "Cross-Browser Compatibility", "Git"
]
BACKEND_KEYWORDS = [
"Node.js", "Express", "Python", "Django", "Ruby on Rails",
"Java", "Spring", "SQL", "NoSQL", "API Development",
"Microservices", "Docker", "Kubernetes", "Authentication"
]
# Define a mapping of positions to keywords
position_map = {
1: ("Blockchain", BLOCKCHAIN_KEYWORDS),
2: ("Fullstack", FULLSTACK_KEYWORDS),
3: ("Frontend", FRONTEND_KEYWORDS),
4: ("Backend", BACKEND_KEYWORDS),
5: ("Smart Contract", SMART_CONTRACT_KEYWORDS)
}
# Base folder containing the CV folders
BASE_FOLDER = 'src'
# Your resume name
USER_RESUME_NAME = ''