- Download the repo
cdto 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
mmdvfile and change the value ofBASE_URLto the copied URL. - Run
./mmdvin 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"