- Download the repo
cd
to the repo's directory- Run
chmod +x ./mmdv
- Run
sudo make install
- Run
mmdv
- Clone mem.dev (https://github.com/ezuk/memdev)
- Run
docker-compose up
- Copy the generated url for localhost (http://localhost:3000/)
- Clone mem.dev bash repo (https://github.com/mem-dev/memdev-bash/)
- Open
mmdv
file and change the value ofBASE_URL
to the copied URL. - Run
./mmdv
in terminal.
- By default, bash doesn't automatically save command prompts to the $HISTFILE. A possible fix is to add the following to your ~/.bashrc file:
# ~/.bashrc
export HISTFILE=~/.bash_history
PROMPT_COMMAND="history -a; $PROMPT_COMMAND"