CoolFace
Apppublic

jbilcke-hf/template-node-python-express

sourceHugging Faceupdated 3y agoView on Hugging Face
2likes
README.md43 linesDownload Raw Back to root
1---2title: Template Node Python Express3emoji: ๐Ÿ4colorFrom: yellow5colorTo: green6sdk: docker7pinned: false8app_port: 78609---10 11A minimalist Docker space to help people getting started with Node, Python, Express and TypeScript.12Ready to be used in a Hugging Face Space.13 14You read it right: this template project will help you call Python libraries from NodeJS!15 16## Installation17 18### Prerequisites19 20- Install NVM: https://github.com/nvm-sh/nvm21- Install Docker https://www.docker.com22 23### Building and run without Docker24 25```bash26nvm use27npm i28npm run start29```30 31### Building and running with Docker32 33```bash34npm run docker35```36 37This script is a shortcut executing the following commands:38 39```bash40docker build -t template-node-python-express .41docker run -it -p 7860:7860 template-node-python-express42```43