Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/iam-abhishek-yadav/notesapp

A MERN stack note-taking application with CRUD functionality. Features secure user authentication and JWT-based access control, ensuring only authenticated users can manage their notes. Designed with a modern UI using TailwindCSS.
https://github.com/iam-abhishek-yadav/notesapp

bcrypt docker docker-compose expressjs jwt mongodb nodejs reactjs zod

Last synced: about 2 months ago
JSON representation

A MERN stack note-taking application with CRUD functionality. Features secure user authentication and JWT-based access control, ensuring only authenticated users can manage their notes. Designed with a modern UI using TailwindCSS.

Awesome Lists containing this project

README

        

**Running the App with Docker Compose**

- **Clone the repository:**

```bash
git clone
cd
```

- **Run Docker Compose:**

```bash
docker-compose up
```

This command will start the following containers:
- `mongo`: MongoDB container
- `server`: Server container
- `react`: React container

Docker Compose will automatically:
- Create and start the containers defined in the `docker-compose.yml` file.
- Create a Docker volume for persistent data storage .

- **Accessing the App:**
- Frontend (React app) might be accessible at `http://localhost:5000`

- **Stopping the App:**

To stop and remove the containers (but retain data volumes):

```bash
docker-compose down
```

This command will stop and remove the Docker containers defined in `docker-compose.yml`, while preserving any volumes associated with the containers.