8000 Releases · jackyzha0/nanoDB · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: jackyzha0/nanoDB

v1.0.0

18 Apr 06:31
ad66b46
Compare
Choose a tag to compare

changelog

  • literally everything

installing

MacOS

  1. download the binary nanodb_darwin
  2. navigate to the file and execute chmod +x nanodb_darwin to make it executable
  3. move it to your project folder
  4. ensure you have a folder called db in the same directory. this is what nanodb will look in to find your documents.
  5. run ./nanodb_darwin to start nanodb! more options and details can be found in the README, including details on using the shell, api server, ports, and more.

Linux

same steps as MacOS, except with nanodb_linux instead.

Windows

  1. download nanodb_windows.exe
  2. move it to your project folder
  3. ensure you have a folder called db in the same directory. this is what nanodb will look in to find your documents.
  4. run nanodb_windows.exe to start nanodb

Docker

  1. pull the latest image docker pull jzhao2k19/nanodb:latest
  2. run the image on the right port docker run -p 3000:3000 jzhao2k19/nanodb:latest st. note that the docker version does not support the interactive shell
0