Cydo
Cydo
Explore posts from servers
CC#
Created by Cydo on 4/16/2025 in #help
āœ… Can't update database in docker.
gotcha, well ill look into seeing how to setup a docker container for development, if not ill go back to my old way and just use docker when im ready to deploy. Thanks for the help šŸ˜„
15 replies
CC#
Created by Cydo on 4/16/2025 in #help
āœ… Can't update database in docker.
Is there a reason why? Normally i just do everything locally no docker. When i want to deploy I ssh into my server and manually drag the files where they need to go, install everything setup nginx etc, but i though Docker would make everything in my life easier but I have been on the struggle bus lol
15 replies
CC#
Created by Cydo on 4/16/2025 in #help
āœ… Can't update database in docker.
Do people only dockerize everything once they are going to deploy to their server?
15 replies
CC#
Created by Cydo on 4/16/2025 in #help
āœ… Can't update database in docker.
Maybe I’m thinking about how docker is used wrong then? I’m running this in development right now so I figured I had to run the commands in the container in order for the SQLite database to get updated while I’m developing.
15 replies
CC#
Created by Cydo on 4/16/2025 in #help
āœ… Can't update database in docker.
services:
ripple-api:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_HTTP_PORTS=3000
- ASPNETCORE_HTTPS_PORTS=3001
- ASPNETCORE_Kestrel__Certificates__Default__Password=(hidden)
- ASPNETCORE_Kestrel__Certificates__Default__Path=(hidden)
- ConnectionStrings__DefaultConnection="Data Source=/app/app.db"
container_name: ripple-api
image: ripple-api
build:
context: ripple-api/Ripple
dockerfile: Dockerfile
ports:
- "3000:3000"
- "3001:3001"
volumes:
- ~/.aspnet/https:/https:ro
- ./ripple-api/Ripple/app.db:/app/app.db

ripple-client:
build:
context: ripple-client
dockerfile: Dockerfile
image: ripple-client
container_name: ripple-client
ports:
- "5000:5000"
depends_on:
- ripple-api
services:
ripple-api:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_HTTP_PORTS=3000
- ASPNETCORE_HTTPS_PORTS=3001
- ASPNETCORE_Kestrel__Certificates__Default__Password=(hidden)
- ASPNETCORE_Kestrel__Certificates__Default__Path=(hidden)
- ConnectionStrings__DefaultConnection="Data Source=/app/app.db"
container_name: ripple-api
image: ripple-api
build:
context: ripple-api/Ripple
dockerfile: Dockerfile
ports:
- "3000:3000"
- "3001:3001"
volumes:
- ~/.aspnet/https:/https:ro
- ./ripple-api/Ripple/app.db:/app/app.db

ripple-client:
build:
context: ripple-client
dockerfile: Dockerfile
image: ripple-client
container_name: ripple-client
ports:
- "5000:5000"
depends_on:
- ripple-api
15 replies
CC#
Created by Cydo on 3/27/2025 in #help
āœ… When and when not to use a DTO?
Perfect, so then this is fine. This is just a simple get request, that pulls data back i want to display all neatly on cards i show on my client, and nothing deeper in the app is affected šŸ˜„ So in my case where im using CQRS i can directly make the Response which is my DTO just be returned directly.
4 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
Imma close this, i appreactiate everyone input and advice šŸ˜„
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
Thanks, hopefully it pays off.
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
and find a job lol
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
I see, im just trying to stay hyper focused and get good at react and .net
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
no blazor?
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
Yeah i look at Laravel cause of all those other builtin things like Cashier, Auth etc.
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
The whole deploying to vercel thing is why i dnt wanna use next even though ik u can seslf host but its gets out of control quickly i read.
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
and im trying to stick with .NET for this entire year, even though Laravel has been super tempting me
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
thats how i feel about next js lol
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
But Vue > imo
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
same reason i chose .NET lol
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
I learned Vue as my first front end framework but went react cause more jobs
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
I was gonna go learn NextJS but i dont really feel like theres a reason too.
81 replies
CC#
Created by Cydo on 3/18/2025 in #help
āœ… Vertical Slice Architecture and Shared Code?
Im using React. Mantine UI, Tanstack Query and Router.
81 replies