Skip to content

Commit 2fcaae0

Browse files
authored
Merge branch 'develop' into feature/2255-harbor
2 parents d25c631 + 6bd8f3f commit 2fcaae0

File tree

106 files changed

+827
-32
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+827
-32
lines changed

.gitpod.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,6 @@ tasks:
88
- name: Build CSS & run web server
99
init: npm run build-css && npm run dev
1010

11-
github:
12-
prebuilds:
13-
addBadge: true
14-
addComment: false
15-
addCheck: true
16-
master: true
17-
branches: true
18-
pullRequestsFromForks: true
19-
2011
ports:
2112
- port: 8000
2213
onOpen: open-preview

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,10 @@ https://www.python.org/downloads/
269269
> **Note**
270270
> Make sure your Python install includes [pip](https://pypi.org/project/pip/)
271271
272-
<h3>Install Selenium</h3>
272+
<h3>Install Dependencies</h3>
273273

274274
```bash
275-
python3 -m pip install --upgrade pip && pip install selenium==4.1.0 requests==2.25.1
275+
python -m pip install -r ./.github/scripts/requirements.txt
276276
```
277277

278278
<h3 id="building-icons">Build the new icons</h3>
@@ -281,11 +281,7 @@ python3 -m pip install --upgrade pip && pip install selenium==4.1.0 requests==2.
281281
Usually, this is done on each release, but you can have a sneak peek before a release.</p>
282282

283283
```bash
284-
# Linux/Unix
285284
npm run build-icons
286-
287-
# Windows
288-
python3 ./.github/scripts/icomoon_build_githubless.py ./.github/scripts/build_assets/geckodriver-v0.32.2-win64/geckodriver.exe ./icomoon.json ./devicon.json ./icons ./ --headless
289285
```
290286

291287
<i>The process might take a while, depending on your operating system's speed and the amount of icons.</i>
@@ -311,7 +307,7 @@ npm run dev # Will run on port 8000
311307
<p>Or this command, which does exactly the same, but the port can be customized.</p>
312308

313309
```bash
314-
python3 -m http.server <port>
310+
python -m http.server <port>
315311
```
316312

317313
<p>You're done now! :tada: Your build of Devicons should be available at <code>https://localhost:8000</code> (or the desired port).</p>

0 commit comments

Comments
 (0)