Skip to content

Commit 5938459

Browse files
committed
Update Home page (description)
1 parent f9f0072 commit 5938459

17 files changed

+10104
-6141
lines changed

README.md

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,25 @@
11
# VBA helpers
2+
23
## 1. What is it
3-
This is a [VBA](https://en.wikipedia.org/wiki/Visual_Basic_for_Applications) code snippets collection intended to solve common Excel programming tasks like:
4-
- [get the last row on a sheet](https://vbahelpers.ru/search?type=n&query=getlastrow)
5-
- [create a new worksheet](https://vbahelpers.ru/search?type=n&query=createws)
6-
- [set cell's background color](https://vbahelpers.ru/search?type=n&query=setbackcolor)
7-
- and [many others](https://vbahelpers.ru/categories).
4+
https://vbahelpers.ru is an open source [procedures / functions collection](https://github.com/akzhar/vba-helpers-api/tree/main/data/code) intended to solve general Excel programming tasks like:
5+
- [find the last row](https://vbahelpers.ru/search?type=n&query=getlastrow)
6+
- [create a worksheet](https://vbahelpers.ru/search?type=n&query=createws)
7+
- [color the range](https://vbahelpers.ru/search?type=n&query=setbackcolor)
8+
- and [many others](https://vbahelpers.ru/categories)
89

910
## 2. How it works
10-
1111
<img src="https://raw.githubusercontent.com/akzhar/vba-helpers/main/demo.gif" alt="demo" title="demo" width="100%"/>
1212

1313
## 3. Links
14-
- [VBA helpers application](https://vbahelpers.ru)
15-
- [VBA helpers API repository](https://github.com/akzhar/vba-helpers-api)
16-
17-
## 4. App description
18-
You can easily search the helper that is suitable for your needs.
19-
20-
All the helpers are [stored](https://github.com/akzhar/vba-helpers-api/tree/main/data) as plain text files and supplied with an example of usage so you can easily apply it in your project.
21-
22-
### 5 ways to search:
14+
- [JSON API repository](https://github.com/akzhar/vba-helpers-api)
2315

16+
### 4. How to find a helper
2417
- [search by title](https://vbahelpers.ru/search?type=t)
2518
- [search by category](https://vbahelpers.ru/search?type=k)
2619
- [search by keywords](https://vbahelpers.ru/search?type=k)
2720
- [search by name](https://vbahelpers.ru/search?type=n)
2821
- [search by id](https://vbahelpers.ru/search?type=i)
22+
- [search right from Excel](https://vbahelpers.ru/search-from-xlsx) 🔥
2923

3024
## 5. Install dependencies
3125
`git clone repo_url``cd ./repo-folder``npm ci`

deploy/README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ hosting --> VPS --> Home --> IP address
1818

1919
## Copy files to the remote VPS server
2020
Connect VPS with SFTP using [FileZilla](https://filezilla-project.org)
21-
- Host: `sftps://host_ip_address`
21+
- Host: `sftp://host_ip_address`
2222
- User: `root`
2323
- Password: see email `Создан сервер Amethyst Neon`
2424
- Port: leave empty
@@ -32,9 +32,13 @@ hosting --> VPS --> Select my server --> Open console
3232

3333
## Set up apache web server
3434
### SSL sertifiates
35-
Folder `/etc/ssl`
35+
Using Let’s Encrypt
36+
https://letsencrypt.org/getting-started - old
37+
https://certbot.eff.org/instructions?ws=apache&os=ubuntufocal
3638

37-
File `fullchain.crt` - сертификат + промежуточный сертификат + корневой сертификат
39+
Certificate + промежуточный сертификат + корневой сертификат
40+
`/etc/ssl/fullchain.crt`
41+
`/etc/letsencrypt/live/vbahelpers.ru/fullchain.pem`
3842
```
3943
-----BEGIN CERTIFICATE-----
4044
...xxx
@@ -47,14 +51,17 @@ File `fullchain.crt` - сертификат + промежуточный сер
4751
-----END CERTIFICATE-----
4852
```
4953

50-
File `private.key` - приватный ключ
51-
54+
Private key
55+
`/etc/ssl/private.key` - old
56+
`/etc/letsencrypt/live/vbahelpers.ru/privkey.pem`
5257
```
5358
-----BEGIN RSA PRIVATE KEY-----
5459
...xxx
5560
-----END RSA PRIVATE KEY-----
5661
```
5762

63+
`/etc/apache2/sites-available/000-default-le-ssl.conf` - ssl cert info
64+
5865
### Describe app's root folder for hosts
5966
Folder `/etc/apache2/sites-available`
6067

0 commit comments

Comments
 (0)