An open API service indexing awesome lists of open source software.

https://github.com/joshwrn/fullstack-todo-app


https://github.com/joshwrn/fullstack-todo-app

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

## Setup

1. Make sure you have Docker installed on your machine.

2. Run the following command in the root directory:

```sh
npm run dev
```

3. Open your browser and navigate to http://localhost:3000

---

### Possible Errors

1. if the permissions are not correct, run the following command:

```sh
chmod +x start-script.sh
```

2. if you get an error like this: `permission denied while trying to connect to the Docker daemon socket at ...`

run the following command:

```
sudo usermod -aG docker $USER
newgrp docker
```

3. Error: Cannot connect to the Docker daemon at unix:////docker.sock. Is the docker daemon running?

Run the following command (replace with the path to your docker installation):

```sh
sudo chmod 666 /docker.sock
```