diff --git a/workspaces/redis-workspace/Dockerfile b/workspaces/redis-workspace/Dockerfile index 8104877..80262e3 100644 --- a/workspaces/redis-workspace/Dockerfile +++ b/workspaces/redis-workspace/Dockerfile @@ -54,7 +54,7 @@ COPY settings.json /home/abc/.theia/settings.json COPY supervisord-redis-wid.conf /etc/supervisord/ COPY mkdocs /home/docs -COPY README.md /home/docs/docs/docs.md +COPY docs/getting-started.md /home/docs/docs/getting-started.md ENV SHELL=/bin/bash \ THEIA_DEFAULT_PLUGINS=local-dir:/opt/theia/plugins \ diff --git a/workspaces/sqlite-workspace/Dockerfile b/workspaces/sqlite-workspace/Dockerfile index a309f52..42ea396 100644 --- a/workspaces/sqlite-workspace/Dockerfile +++ b/workspaces/sqlite-workspace/Dockerfile @@ -9,7 +9,7 @@ USER root COPY supervisord-sqlite.conf /etc/supervisord/ COPY mkdocs /home/docs -COPY README.md /home/docs/docs/docs.md +COPY docs/getting-started.md /home/docs/docs/getting-started.md # apt-get install -y sqlite3 \ diff --git a/workspaces/sqlite-workspace/docs/getting-started.md b/workspaces/sqlite-workspace/docs/getting-started.md index 2d56a51..9ede9f0 100644 --- a/workspaces/sqlite-workspace/docs/getting-started.md +++ b/workspaces/sqlite-workspace/docs/getting-started.md @@ -5,19 +5,45 @@ This doc has examples how to use workspace toolset to develop and fill SQLite da Open Quickstart page [http://localhost:800/](http://localhost:8020/) for quick access to all the tools

- Redis WID + SQLITE WID

-Use workspace terminal [http://localhost:8026/](http://localhost:8026/) for CLI commands. +Use workspace terminal [http://localhost:8026/](http://localhost:8026/) for CLI commands. + +Workspace conntains example SQLite database, the file `/home/static-server/sqlite-viewer/examples/Chinook_Sqlite.sqlite` + ## NocoDB [NocoDB](https://docs.nocodb.com/). NocoDB is an open source Airtable alternative. Use it to create SQLite tables, develop databases -without SQL. +without SQL. + +NocoDB can also be used to fill SQLite databases with data with the help of nice interactive UI. Launch the workspace, navigate to the Workspace UI and open NocoDB. Or open [localhost:8030](http://localhost:8030/) directly in browser. Create new user (provide any email,pass). Create tables, enter data, import data files, create forms and much more. +### NocoDB with existing SQLite database + +Create NocoDB project with an empty external SQLite database file `/home/project/sqlite-db/db-main.sqlite`. + +

+ Noco new main +

+ +Create some data, and explore it with Sqlite-web [localhost:8032](http://localhost:8032/) + +

+ Sqliteweb main +

+ +You can also open existing SQLIte database, and edit it with NocoDB. Let's open example SQLite database `/home/static-server/sqlite-viewer/examples/Chinook_Sqlite.sqlite` + +

+ noco chinook +

+ + ### query NocoDB data NocoDB is backed by SQLite3, database file `/home/nocodb/noco.db `. @@ -31,14 +57,6 @@ mv -f /home/nocodb/noco.db /home/project/sqlite-db/db-main.sqlite ``` Open Sqlite-web on [localhost:8032](http://localhost:8032/) -### NocoDB with another SQLite database - -If yopu create NocoDB project with external database, tables created by NocoDB will not have prefixes. - -For example, create project with the example Chinook SQLite database file `/home/static-server/sqlite-viewer/examples/Chinook_Sqlite.sqlite`, -and query data also with sqlite-web on [localhost:8033](http://localhost:8033/). - -Or create NocoDB project with external SQLite database file `/home/project/sqlite-db/db-main.sqlite` and query with sqlite-web on [localhost:8032](http://localhost:8032/). ## Sqlite @@ -71,15 +89,26 @@ sqlite3 .load /home/sqlite-extensions/stats ``` +### Upload & download SQLite databases + +No matter if workspace is used locally, in cloud or kubernetes you can upload and download database files using file browser + +

+ Filebrowser +

+ ### Copy SQlite databases SQlite is just a file, jou can copy it and replace other databases. For example, if you want to copy NocoDB database -into the "Main" database, which is served by Sqlite-web on [localhost:8032](http://localhost:8032/) simply execute +into the "Main" database, which is served by Sqlite-web on [localhost:8032](http://localhost:8032/) simply execute in terminal ``` mv -f /home/nocodb/noco.db /home/project/sqlite-db/db-main.sqlite ``` +You also can use file browser to move or copy files. + + ## [sqlite-web](https://github.com/coleifer/sqlite-web) Serve any SQLite database. There are 2 SQlite database served by default: @@ -88,6 +117,11 @@ Serve any SQLite database. There are 2 SQlite database served by default: - "Main" database. Empty SQlite3 database. Sqlite-web is served on [localhost:8032](http://localhost:8032/) - "Example/test" database. Filled with test "Chinook" database. Sqlite-web is served on [localhost:8033](http://localhost:8033/) +

+ sqliteweb chinook +

+ + ### Serve on-demand SQlite database One port 8034 is reserved for serving on-demand database with Sqlite-web. @@ -113,11 +147,19 @@ sqlite_web /home/static-server/sqlite-viewer/examples/Chinook_Sqlite.sqlite --ho Explore and query SQLite databases. Upload SQLite database file (from your local machine) and explore. +

+ sqlite viewer +

+ ## [Web-GUI-for-SQLite](https://github.com/cyrilbois/Web-GUI-for-SQLite) Explore and query SQLite databases. Upload SQLite database file (from your local machine) and explore. +

+ sqlite web gui +

+ ## [litecli](https://github.com/dbcli/litecli) @@ -129,6 +171,15 @@ Open Terminal and try with example database: litecli /home/static-server/sqlite-viewer/examples/Chinook_Sqlite.sqlite ``` +

+ litecli +

+ +

+ litecli pager +

+ + Load extensions ``` @@ -145,6 +196,19 @@ tbls doc sqlite:////home/static-server/sqlite-viewer/examples/Chinook_Sqlite.sql and view SVG files with Static File Server +

+ tbls +

+ + +### DB designer + +With DB designer you can visually create ERD diagrams, and generate DDL SQL scripts + +

+ db designer +

+ ## Advanced diff --git a/workspaces/sqlite-workspace/img/dbdesigner.png b/workspaces/sqlite-workspace/img/dbdesigner.png new file mode 100644 index 0000000..b767004 Binary files /dev/null and b/workspaces/sqlite-workspace/img/dbdesigner.png differ diff --git a/workspaces/sqlite-workspace/img/filebrowser-download.png b/workspaces/sqlite-workspace/img/filebrowser-download.png new file mode 100644 index 0000000..b98a22c Binary files /dev/null and b/workspaces/sqlite-workspace/img/filebrowser-download.png differ diff --git a/workspaces/sqlite-workspace/img/litecli-1.png b/workspaces/sqlite-workspace/img/litecli-1.png new file mode 100644 index 0000000..f7d1120 Binary files /dev/null and b/workspaces/sqlite-workspace/img/litecli-1.png differ diff --git a/workspaces/sqlite-workspace/img/litecli-2.png b/workspaces/sqlite-workspace/img/litecli-2.png new file mode 100644 index 0000000..dc69bdf Binary files /dev/null and b/workspaces/sqlite-workspace/img/litecli-2.png differ diff --git a/workspaces/sqlite-workspace/img/noco-chinook.gif b/workspaces/sqlite-workspace/img/noco-chinook.gif new file mode 100644 index 0000000..150f262 Binary files /dev/null and b/workspaces/sqlite-workspace/img/noco-chinook.gif differ diff --git a/workspaces/sqlite-workspace/img/noco-new-main.png b/workspaces/sqlite-workspace/img/noco-new-main.png new file mode 100644 index 0000000..a3943da Binary files /dev/null and b/workspaces/sqlite-workspace/img/noco-new-main.png differ diff --git a/workspaces/sqlite-workspace/img/sqlite-viewer.png b/workspaces/sqlite-workspace/img/sqlite-viewer.png new file mode 100644 index 0000000..064d9b4 Binary files /dev/null and b/workspaces/sqlite-workspace/img/sqlite-viewer.png differ diff --git a/workspaces/sqlite-workspace/img/sqlite-web-gui.png b/workspaces/sqlite-workspace/img/sqlite-web-gui.png new file mode 100644 index 0000000..a11a5be Binary files /dev/null and b/workspaces/sqlite-workspace/img/sqlite-web-gui.png differ diff --git a/workspaces/sqlite-workspace/img/sqlite-wid.png b/workspaces/sqlite-workspace/img/sqlite-wid.png new file mode 100644 index 0000000..ee62aed Binary files /dev/null and b/workspaces/sqlite-workspace/img/sqlite-wid.png differ diff --git a/workspaces/sqlite-workspace/img/sqliteweb-chinook.gif b/workspaces/sqlite-workspace/img/sqliteweb-chinook.gif new file mode 100644 index 0000000..a21d55f Binary files /dev/null and b/workspaces/sqlite-workspace/img/sqliteweb-chinook.gif differ diff --git a/workspaces/sqlite-workspace/img/sqliteweb-main.gif b/workspaces/sqlite-workspace/img/sqliteweb-main.gif new file mode 100644 index 0000000..7b5e8dd Binary files /dev/null and b/workspaces/sqlite-workspace/img/sqliteweb-main.gif differ diff --git a/workspaces/sqlite-workspace/img/tbls.gif b/workspaces/sqlite-workspace/img/tbls.gif new file mode 100644 index 0000000..5b7c901 Binary files /dev/null and b/workspaces/sqlite-workspace/img/tbls.gif differ diff --git a/workspaces/sqlite-workspace/mkdocs/docs/README.md b/workspaces/sqlite-workspace/mkdocs/docs/README.md index 9d5b02c..986362a 100644 --- a/workspaces/sqlite-workspace/mkdocs/docs/README.md +++ b/workspaces/sqlite-workspace/mkdocs/docs/README.md @@ -1,28 +1,178 @@ -**This is a starting point to create docs for this workspace!** + -In order to change this page, simply modify the file `/home/docs/docs/README.md`. Changes will be applied automatically - the -server that serves this page has live reload. -In order to add a new doc file, it is enough to create a file in the folder `/home/docs/docs` and add respective entry -to the configuratiion file `/home/docs/mkdcs.yaml`. +{% + set tools = [ + { + "env": "IDE_URL", + "name": "IDE", + "image": "assets/home/IDE.jpg", + "description": "Browser-based version of Visual Studio Code. Develop in any language, install hundreeds of extensions" + }, + { + "env": "TERMINAL_URL", + "name": "Terminal", + "image": "assets/home/Terminal.png", + "description": "Full-fledged browser-based terminal with Z-shell" + }, + { + "env": "FILEBROWSER_URL", + "name": "File Browser", + "image": "assets/home/Filebrowser.png", + "description": "Browse, upload and download files and folders to and from the Workspace" + }, + { + "env": "CRONICLE_URL", + "name": "Cronicle", + "image": "assets/home/Cronicle.jpg", + "description": "Schedule jobs, manage schedules, observe and monitor executions (user/pass - admin/admin)" + }, + { + "env": "NOCODB_URL", + "name": "NocoDB", + "image": "assets/home/Nocodb.png", + "description": "Open source Airtable alternative. GUI for your SQLite database." + }, + { + "env": "SQLITE_WEB_NOCODB", + "name": "SQLite database browser for NocoDB", + "image": "assets/home/db-test.jpg", + "description": "Explore and query SQLite database of NocoDB" + }, + { + "env": "SQLITE_WEB_MAIN_URL", + "name": "SQLite database browser (main)", + "image": "assets/home/db-main.jpg", + "description": "Develop SQLite database with the help of WEB UI" + }, + { + "env": "SQLITE_WEB_EXAMPLE_URL", + "name": "SQLite database browser (example)", + "image": "assets/home/db-example.jpg", + "description": "Example SQLite database with multiple extensions" + }, + { + "env": "SQLITE_WEB_CUSTOM_URL", + "name": "SQLite database browser (custom)", + "image": "assets/home/db-custom.jpg", + "description": "Not started! Start manually with your SQLite database, i.e. sqlite_web /home/static-server/sqlite-viewer/examples/Chinook_Sqlite.sqlite --host 0.0.0.0 --port 8034" + }, + { + "env": "DBDESIGNER_URL", + "name": "DB designer", + "image": "assets/home/dbdesigner.png", + "description": "Visual design tool for Entity Relationship Diagrams & SQL generator" + }, + { + "env": "SQLITE_VIEWER_URL", + "name": "SQLite browser-based viewer", + "image": "assets/home/sqlite-viewer.jpg", + "description": "Upload local SQLite databses, explore and query data" + }, + { + "env": "SQLITE_WEB_GUI_URL", + "name": "SQLite browser-based GUI", + "image": "assets/home/sqlite-gui.jpg", + "description": "Upload local SQLite databses, explore and query data" + }, + { + "env": "UNGIT_URL", + "name": "Ungit", + "image": "assets/home/Ungit.jpg", + "description": "Manage Git repositories and work flow using beautiful UI" + }, + { + "env": "STATICFS_URL", + "name": "Static File Server", + "image": "assets/home/Static-server.png", + "description": "Serve any static websites like a breeze" + }, + { + "env": "MC_URL", + "name": "M.Commander", + "image": "assets/home/MC.jpg", + "description": "Feature rich visual file manager with internal text viewer and editor" + }, + { + "env": "HTOP_URL", + "name": "Process monitor", + "image": "assets/home/Htop.jpg", + "description": "Monitor running process and resource utilization" + } + ] +%} -Open workspace terminal, and create new documentation file with some text at your will, and save changes -> `nano /home/docs/docs/new.md` +
+ {% for tool in tools %} + {% set tool_url = get_tool_url(tool.env) %} +
+ + + + +
{{ tool.name }}
+
+
{{ tool.description }}
+
+ {% endfor %} +
+ -edit file `mkdcs.yaml` -> `nano /home/docs/mkdcs.yaml` -Add record about the new file to **nav**, and save changes -```yaml -nav: - - Home: pages/home/home.md - - About: README.md - - Get started: get-started.md - - New: new.md -``` \ No newline at end of file diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Cronicle.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/Cronicle.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Cronicle.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/Cronicle.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Filebrowser.png b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/Filebrowser.png similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Filebrowser.png rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/Filebrowser.png diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Htop.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/Htop.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Htop.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/Htop.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/IDE.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/IDE.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/IDE.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/IDE.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/MC.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/MC.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/MC.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/MC.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/MkDocs.png b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/MkDocs.png similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/MkDocs.png rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/MkDocs.png diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Nocodb.png b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/Nocodb.png similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Nocodb.png rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/Nocodb.png diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Static-server.png b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/Static-server.png similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Static-server.png rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/Static-server.png diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Terminal.png b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/Terminal.png similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Terminal.png rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/Terminal.png diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Ungit.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/Ungit.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/Ungit.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/Ungit.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/db-custom.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/db-custom.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/db-custom.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/db-custom.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/db-example.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/db-example.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/db-example.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/db-example.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/db-main.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/db-main.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/db-main.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/db-main.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/db-test.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/db-test.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/db-test.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/db-test.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/dbdesigner.png b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/dbdesigner.png similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/dbdesigner.png rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/dbdesigner.png diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/sqlite-gui.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/sqlite-gui.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/sqlite-gui.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/sqlite-gui.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/sqlite-viewer.jpg b/workspaces/sqlite-workspace/mkdocs/docs/assets/home/sqlite-viewer.jpg similarity index 100% rename from workspaces/sqlite-workspace/mkdocs/docs/pages/home/home/sqlite-viewer.jpg rename to workspaces/sqlite-workspace/mkdocs/docs/assets/home/sqlite-viewer.jpg diff --git a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home.md b/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home.md deleted file mode 100644 index e8e2e98..0000000 --- a/workspaces/sqlite-workspace/mkdocs/docs/pages/home/home.md +++ /dev/null @@ -1,175 +0,0 @@ - - - -{% - set tools = [ - { - "env": "IDE_URL", - "name": "IDE", - "image": "IDE.jpg", - "description": "Browser-based version of Visual Studio Code. Develop in any language, install hundreeds of extensions" - }, - { - "env": "TERMINAL_URL", - "name": "Terminal", - "image": "Terminal.png", - "description": "Full-fledged browser-based terminal with Z-shell" - }, - { - "env": "FILEBROWSER_URL", - "name": "File Browser", - "image": "Filebrowser.png", - "description": "Browse, upload and download files and folders to and from the Workspace" - }, - { - "env": "CRONICLE_URL", - "name": "Cronicle", - "image": "Cronicle.jpg", - "description": "Schedule jobs, manage schedules, observe and monitor executions (user/pass - admin/admin)" - }, - { - "env": "NOCODB_URL", - "name": "NocoDB", - "image": "Nocodb.png", - "description": "Open source Airtable alternative. GUI for your SQLite database." - }, - { - "env": "SQLITE_WEB_NOCODB", - "name": "SQLite database browser for NocoDB", - "image": "db-test.jpg", - "description": "Explore and query SQLite database of NocoDB" - }, - { - "env": "SQLITE_WEB_MAIN_URL", - "name": "SQLite database browser (main)", - "image": "db-main.jpg", - "description": "Develop SQLite database with the help of WEB UI" - }, - { - "env": "SQLITE_WEB_EXAMPLE_URL", - "name": "SQLite database browser (example)", - "image": "db-example.jpg", - "description": "Example SQLite database with multiple extensions" - }, - { - "env": "SQLITE_WEB_CUSTOM_URL", - "name": "SQLite database browser (custom)", - "image": "db-custom.jpg", - "description": "Not started! Start manually with your SQLite database, i.e. sqlite_web /home/static-server/sqlite-viewer/examples/Chinook_Sqlite.sqlite --host 0.0.0.0 --port 8034" - }, - { - "env": "DBDESIGNER_URL", - "name": "DB designer", - "image": "dbdesigner.png", - "description": "Visual design tool for Entity Relationship Diagrams & SQL generator" - }, - { - "env": "SQLITE_VIEWER_URL", - "name": "SQLite browser-based viewer", - "image": "sqlite-viewer.jpg", - "description": "Upload local SQLite databses, explore and query data" - }, - { - "env": "SQLITE_WEB_GUI_URL", - "name": "SQLite browser-based GUI", - "image": "sqlite-gui.jpg", - "description": "Upload local SQLite databses, explore and query data" - }, - { - "env": "UNGIT_URL", - "name": "Ungit", - "image": "Ungit.jpg", - "description": "Manage Git repositories and work flow using beautiful UI" - }, - { - "env": "STATICFS_URL", - "name": "Static File Server", - "image": "Static-server.png", - "description": "Serve any static websites like a breeze" - }, - { - "env": "MC_URL", - "name": "M.Commander", - "image": "MC.jpg", - "description": "Feature rich visual file manager with internal text viewer and editor" - }, - { - "env": "HTOP_URL", - "name": "Process monitor", - "image": "Htop.jpg", - "description": "Monitor running process and resource utilization" - } - ] -%} - - -
- {% for tool in tools %} - {% set tool_url = get_tool_url(tool.env) %} -
- - - - -
{{ tool.name }}
-
-
{{ tool.description }}
-
- {% endfor %} -
- - - - - diff --git a/workspaces/sqlite-workspace/mkdocs/mkdocs.yml b/workspaces/sqlite-workspace/mkdocs/mkdocs.yml index 5293b59..548a6e2 100644 --- a/workspaces/sqlite-workspace/mkdocs/mkdocs.yml +++ b/workspaces/sqlite-workspace/mkdocs/mkdocs.yml @@ -3,9 +3,8 @@ # =========================================================== nav: - - Home: pages/home/home.md - - About: README.md - - Docs: docs.md + - Home: README.md + - Get started: getting-started.md # ===========================================================