https://github.com/jgrodziski/cljs-cloud-function
A cljs template for generating Clojurescript targeting serverless Google Cloud Function as the execution platform
https://github.com/jgrodziski/cljs-cloud-function
clojure clojurescript cloud function gcloud google serverless
Last synced: 5 months ago
JSON representation
A cljs template for generating Clojurescript targeting serverless Google Cloud Function as the execution platform
- Host: GitHub
- URL: https://github.com/jgrodziski/cljs-cloud-function
- Owner: jgrodziski
- License: epl-1.0
- Created: 2019-08-21T17:45:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-21T18:13:51.000Z (over 6 years ago)
- Last Synced: 2025-07-21T01:37:56.165Z (6 months ago)
- Topics: clojure, clojurescript, cloud, function, gcloud, google, serverless
- Language: Clojure
- Size: 10.7 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# cljs-cloud-function
A cljs template to create a project using tools.deps and shadow-cljs targeting Google Cloud Function serverless environment for execution.
## Usage
```
clj -Sdeps '{:deps {seancorfield/clj-new {:mvn/version "0.7.7"}}}' \
-m clj-new.create \
cljs-cloud-function \
myname/myapp
```
Or if you have `clj-new` in your `~/.clojure/deps.edn` like so:
```
{:aliases {:new {:extra-deps {seancorfield/clj-new {:mvn/version "0.7.7"}}
:main-opts ["-m" "clj-new.create"]}}
...}
```
just invoke:
```
clj -A:new cljs-cloud-function myname/myapp
```
Then you can edit the .../foo.cljs namespace and the `myapp` function inside.
You can just invoke the build with `build.sh`.
Then `deploy.sh` (will invoke the `build.sh` script first), given you had installed the [`gcloud SDK`](https://cloud.google.com/sdk/gcloud/) and had loggued onto your project.
You can install any Node JS library with `npm` and `shadow-cljs`, see: https://shadow-cljs.github.io/docs/UsersGuide.html#npm
See [clj-new](https://github.com/seancorfield/clj-new) for invoking the clj-new.create function with the template.
See the [template's README](https://github.com/jgrodziski/cljs-cloud-function/blob/master/resources/clj/new/cljs_cloud_function/README.md) for information on the usage once the project is generated.
## License
Copyright © 2019 Jeremie Grodziski
Distributed under the Eclipse Public License either version 1.0.