https://github.com/joshwrn/fullstack-todo-app
https://github.com/joshwrn/fullstack-todo-app
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/joshwrn/fullstack-todo-app
- Owner: joshwrn
- Created: 2025-01-22T02:23:41.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-24T07:54:03.000Z (5 months ago)
- Last Synced: 2025-01-24T08:23:52.866Z (5 months ago)
- Language: TypeScript
- Size: 6.44 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```