https://github.com/waxer59/imageuploader
https://github.com/waxer59/imageuploader
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/waxer59/imageuploader
- Owner: Waxer59
- Created: 2022-08-27T23:10:15.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-20T10:17:08.000Z (almost 2 years ago)
- Last Synced: 2025-01-16T05:29:38.393Z (4 months ago)
- Language: TypeScript
- Size: 1.65 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ImageUploader
This is an application to upload images and visualize them with the given url# Run the project in dev mode
1. Complete the environment variable file __.env.template__ and once completed rename it to __.env__
2. Install all project dependencies with the command:
```
yarn
```3. Create the docker image to run the database with the command (Important to have the docker daemon open):
```
docker-compose -f docker-compose.yml --env-file .env up --build
```4. If the image has already been created, use this command to create the database:
```
docker-compose up -d
```1. Run the project with the command:
```
yarn start:dev
```## Technologies used
* Nestjs
* MongoDB
* Docker
* Font Awesome
* HandleBars## Notes
* All images are stored locally inside the __data__ folder.
* Accepted image formats are __[JPG, PNG, JPEG]__.