Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 591 Bytes

README.md

File metadata and controls

34 lines (29 loc) · 591 Bytes

Basil App Backend Code

Install the dependencies:

Firebase CLI

See the instructions here

npm packages

npm install

Run the app:

DEBUG=BasilAppBackEnd:* npm start

or

node app.js

Dockerize!

Build the container

docker build -t basil-backend .
Run the container (detached)
docker run -d -p 3000:3000 \
       --restart=unless-stopped \
       --name basil-backend \
       basil-backend

NET Copyright