Open bprashanth opened 3 months ago
Looks like you already have a dockerfile, maybe just update your installation instructions on how to run / access the api via that in addition to the existing venv setup
https://github.com/WELLlabs/JaltolAPI/blob/main/Dockerfile
I think just a docker run with -p
to map ports should work right?
Actually also map the host volume, so one can preserve data between runs.
Configs are also a common thing to mount, so you can eg check in some dev keys/config files and mount those on local runs vs mount a prod file at deployment time.
Block upstream main from pushes
$ git remote set-url --push upstream blocked_for_push
Check your remotes
$ git remote -v
$ git checkout main $ git fetch upstream && git rebase upstream/main $ git checkout -b feature_foobar
make your changes on the feature_foobar branch
$ git add your_file $ git commit $ git push -f feature_foobar