32 lines
497 B
Org Mode
32 lines
497 B
Org Mode
|
|
#+TITLE: README for lane-slip-generator
|
|
|
|
This is written in kotlin JS. To run it, you'll need to install the
|
|
following tools:
|
|
|
|
nodejs/npm
|
|
|
|
then install the firebase tools:
|
|
|
|
npm install -g firebase-tools
|
|
|
|
Then do:
|
|
|
|
firebase init functions
|
|
|
|
to re-initialize the project, and finally, install the kotlin support
|
|
in the functions directory:
|
|
|
|
cd functions
|
|
npm install --save kotlin
|
|
|
|
Then do a build:
|
|
|
|
gradlew clean build
|
|
|
|
And you should be able to run the project:
|
|
|
|
firebase serve --only functions
|
|
|
|
|