gitrows / gitrows

A lightweight module for using git as a database
https://gitrows.com
MIT License
345 stars 18 forks source link

Docker Container for a full quick start of the api ! #35

Closed Sanix-Darker closed 2 years ago

Sanix-Darker commented 2 years ago

Is your feature request related to a problem? Please describe. Not really but for a quick start project, it could be nice to have a docker container for githubrows that start a full restfull api

Describe the solution you'd like I would like to add that to the project but i wanted to know if it's on the roadmap at the first place, i mean something like...

FROM node:12.18.1
ENV NODE_ENV=production

WORKDIR /app

COPY ["package.json", "package-lock.json*", "./"]

RUN npm install --production

COPY . .

CMD [ "node", "server.js" ]

Describe alternatives you've considered N/A

Additional context N/A

Sanix-Darker commented 2 years ago

Soooo.... i finaly decided to make it myself lol ! https://github.com/Sanix-Darker/gitrowspack-api

With some adjustments, fix, corrections and improvements !

nicolaszimmer commented 2 years ago

Well done @Sanix-Darker !