Skip to content

Commit fcde1ff

Browse files
committed
[dev] migrate to docusaurus engine
1 parent 4cb429d commit fcde1ff

File tree

4,913 files changed

+408829
-73327
lines changed

Some content is hidden

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

4,913 files changed

+408829
-73327
lines changed

.drone.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: Deploy To Site
4+
5+
# Controls when the action will run.
6+
on:
7+
# Triggers the workflow on push or pull request events but only for the master branch
8+
push:
9+
branches: [ master, next, test ]
10+
11+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
12+
jobs:
13+
# This workflow contains a single job called "build"
14+
build:
15+
# The type of runner that the job will run on
16+
runs-on: ubuntu-latest
17+
18+
# Steps represent a sequence of tasks that will be executed as part of the job
19+
steps:
20+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
21+
- uses: actions/checkout@v4
22+
- id: vars
23+
run: echo ::set-output name=short_ref::${GITHUB_REF#refs/*/}
24+
25+
- uses: actions/setup-node@v4
26+
with:
27+
node-version: "20.0"
28+
29+
- run: yarn install
30+
- run: yarn build
31+
32+
- uses: docker/setup-buildx-action@v1
33+
- uses: docker/login-action@v1
34+
with:
35+
username: ${{ secrets.REGISTRY_USERNAME }}
36+
password: ${{ secrets.REGISTRY_TOKEN }}
37+
registry: registry.webix.io
38+
- uses: docker/build-push-action@v2
39+
with:
40+
context: .
41+
push: true
42+
tags: registry.webix.io/gantt-docs-alt:${{ steps.vars.outputs.short_ref }}
43+
44+
- run: curl "https://docs.dhtmlx.com/hooks/restart-docker?token=${{ secrets.RESTART_TOKEN }}&project=docs-gantt-alt-${{ steps.vars.outputs.short_ref }}"

.gitignore

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
.idea
2-
export
3-
search/data
4-
madoka.local.json
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*

.htaccess

Lines changed: 0 additions & 19 deletions
This file was deleted.

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM nginx:1.19.6
2+
COPY docker/nginx.conf /etc/nginx/nginx.conf
3+
COPY docker/redirects.conf /etc/nginx/redirects.conf
4+
COPY ./build /usr/share/nginx/html

README.md

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,39 @@
1-
<h1 align="center"><a href="https://docs.dhtmlx.com/suite/">DHTMLX Gantt Documentation</a></h1>
1+
<h1 align="center"><a href="https://docs.dhtmlx.com/gantt">DHTMLX Gantt Documentation</a></h1>
22

3-
DHTMLX Gantt is the most complete JavaScript Gantt chart library for project management.
3+
DHTMLX Gantt is the most complete Gantt chart library to cover all the needs of a project management app and advance web development.
4+
5+
6+
7+
## Explore documentation locally
8+
9+
To run the Gantt documentation locally, take the following steps:
10+
11+
#### 1. Clone the documentation to the local folder
12+
13+
```
14+
$ git clone [email protected]:DHTMLX/gantt-docs.git
15+
$ cd gantt-docs
16+
```
17+
18+
#### 2. Install dependencies
19+
20+
```
21+
$ yarn
22+
```
23+
24+
#### 3. Run the documentation on the local server and explore it
25+
26+
```
27+
$ yarn start
28+
```
429

530
## Related sources
631

732
[Download DHTMLX Gantt](https://dhtmlx.com/docs/products/dhtmlxGantt/download.shtml)
833

9-
[Live demos](https://snippet.dhtmlx.com/40tsh9uz?tag=gantt)
34+
[Live demos](https://docs.dhtmlx.com/gantt/samples)
1035

11-
[Blog](https://dhtmlx.com/blog/tag/gantt/)
36+
[Blog](https://dhtmlx.com/blog/)
1237

1338
[Forum](https://forum.dhtmlx.com/c/gantt/15)
1439

@@ -20,8 +45,8 @@ Watch our tutorials on [YouTube](https://www.youtube.com/user/dhtmlx/videos) :ey
2045

2146
Read us on [Medium](https://medium.com/@dhtmlx) :newspaper:
2247

23-
Follow us on [Twitter](https://twitter.com/dhtmlx) :feet:
48+
Follow us on [X](https://x.com/dhtmlx) :feet:
2449

2550
Like our page on [Facebook](https://www.facebook.com/dhtmlx/) :thumbsup:
2651

27-
See our news on [Linkedin](https://www.linkedin.com/groups/3345009/) :mega:
52+
See our news on [Linkedin](https://www.linkedin.com/groups/3345009/) :mega:

assets/common/dhx-logo.png

-2.5 KB
Binary file not shown.

assets/common/footer-logo.png

-1.95 KB
Binary file not shown.

assets/favicon.ico

-1.12 KB
Binary file not shown.

assets/index/front.png

-16 KB
Binary file not shown.

0 commit comments

Comments
 (0)