Skip to content

Commit 7fe6a7f

Browse files
committed
Updated description
1 parent 48df1a5 commit 7fe6a7f

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

config/_default/languages.en.toml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,30 @@ languageCode = 'en-us'
22
languageName = "English"
33
weight = 1
44

5-
title = "Clace : Hypermedia driven web tools platform"
5+
title = "Clace : Web App Deployment Platform"
66
copyright = "Copyright © 2024 ClaceIO, LLC"
77

88

99
[languages]
10-
[languages.en]
11-
[languages.en.params]
12-
displayName = "EN"
13-
isoCode = "en"
14-
rtl = false
15-
dateFormat = "2 January 2006"
16-
description = "Hypermedia driven web tools platform"
10+
[languages.en]
11+
[languages.en.params]
12+
displayName = "EN"
13+
isoCode = "en"
14+
rtl = false
15+
dateFormat = "2 January 2006"
16+
description = "Web app deployment platform"
1717

1818
[params]
19-
mainSections = ["Features", "Docs", "Blog", "About"]
19+
mainSections = ["Features", "Docs", "Blog", "About"]
2020

2121
[params.author]
22-
name = "Clace"
23-
headline = "Hypermedia Driven Web Tools Platform"
24-
links = [
25-
{ email = "mailto:[email protected]" },
26-
{ github = "https://github.com/claceio" },
27-
{ twitter = "https://twitter.com/akclace" },
28-
# { linkedin = "https://www.linkedin.com/company/claceio"},
29-
{ rss = "https://clace.io/blog/index.xml"},
30-
{ discord = "https://discord.gg/t2P8pJFsd7"},
31-
]
22+
name = "Clace"
23+
headline = "Web App Deployment Platform"
24+
links = [
25+
{ email = "mailto:[email protected]" },
26+
{ github = "https://github.com/claceio" },
27+
{ twitter = "https://twitter.com/akclace" },
28+
# { linkedin = "https://www.linkedin.com/company/claceio"},
29+
{ rss = "https://clace.io/blog/index.xml" },
30+
{ discord = "https://discord.gg/t2P8pJFsd7" },
31+
]

content/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ cascade:
1717

1818
<h2>What is Clace?</h2>
1919

20-
Clace is an Apache-2.0 licensed project building a platform to develop and deploy hypermedia driven web apps for internal tools. For running multiple web applications on a single machine, Clace provides functionality which usually requires stitching together multiple services: reverse proxy like nginx/caddy (for domain/path based routing, TLS certs, static file serving), application server like uwsgi/gunicorn with micro-framework like flask (for API handling) and deployment infrastructure like containers/VMs/k8s (for isolation across apps, versioning and staged deployments, gitops). For internal tools, Clace provides similar functionality in a single lightweight binary.
20+
Clace is an Apache-2.0 licensed project building a platform to develop and deploy web apps for internal tools. For running multiple web applications on a single machine, Clace provides functionality which usually requires stitching together multiple services: reverse proxy like nginx/caddy (for domain/path based routing, TLS certs, static file serving), application server like uwsgi/gunicorn with micro-framework like flask (for API handling) and deployment infrastructure like containers/VMs/k8s (for isolation across apps, versioning and staged deployments). For internal tool deployment, Clace provides similar functionality in a single lightweight binary, with gitops workflow out of the box.
2121

2222
<br>
2323
<h2>What can it do?</h2>
2424
<p>
25-
Clace can be used to easily develop and deploy hypermedia driven web applications which are secure and portable. Clace can run web apps for personal use and also host applications for access over the public internet. Clace can be used by teams to host internal applications. Clace supports building a hypermedia driven web interface for an existing API's, a backend-for-frontend type pattern. Developing a web UI for command line applications is another use-case. CRUD applications and applications which glue together backend APIs are good candidates for Clace apps.
25+
Clace can be used to easily develop and deploy web applications which are secure and portable. Clace can run web apps for personal use and also host applications for access over the public internet. Clace can be used by teams to host internal applications. Clace supports building a hypermedia driven web interface for an existing API's, a backend-for-frontend type pattern. Developing a web UI for command line applications is another use-case. CRUD applications and applications which glue together backend APIs are good candidates for Clace apps.
2626
<br>
2727

2828
<h2>How does it work?</h2>
29-
Clace and its plugins are implemented in go. User applications are developed and configured in <a href="https://github.com/google/starlark-go">Starlark</a>, which uses a python inspired syntax. Users of Clace write only Starlark and HTML templates. The backend code runs in a security sandbox and access to plugins need to be explicitly permitted. The API routes are defined to be Hypermedia first, using template partials to drive the UI interactions. <a href="https://htmx.org/">HTMX</a> is used for server interactions from the UI.
29+
Clace and its plugins are implemented in go. User applications are developed and configured in <a href="https://github.com/google/starlark-go">Starlark</a>, which uses a python inspired syntax. Users of Clace write only Starlark and HTML templates. The backend code runs in a security sandbox and access to plugins need to be explicitly permitted. The API routes are defined to be Hypermedia first, using template partials to drive the UI interactions. <a href="https://htmx.org/">HTMX</a> is used for server interactions from the UI. Application backends can be defined in a Dockerfile, Clace builds and deploys the containers to serve the application.
3030

3131
There are no Python or Javascript dependencies to install, no containers to create, no yaml files to manage. Application updates are done with a gitops workflow, with no-build step. Staging and preview environments are available for apps. Clace integrates with TailwindCSS/DaisyUI for UI styling and has <a href="https://esbuild.github.io/">esbuild</a> built-in for <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules">ESM</a> support. Data persistence to sqlite is supported using a document store interface. Clace manages request routing and TLS certificates creation and renewal, so a separate web server is not required.
3232

0 commit comments

Comments
 (0)