feat: remove stamp_ prefix from directories

This commit is contained in:
Stijnvandenbroek
2025-06-29 11:34:40 +02:00
parent fd1229c8f3
commit 16e2032f9e
32 changed files with 7 additions and 7 deletions

View File

@@ -104,7 +104,7 @@ If you prefer to run without Docker:
```bash ```bash
# Navigate to backend directory # Navigate to backend directory
cd stamp_backend/ cd backend/
# Install uv # Install uv
pip install uv pip install uv
@@ -124,7 +124,7 @@ uvicorn src.main:app --host 0.0.0.0 --port 8000
```bash ```bash
# Navigate to frontend directory # Navigate to frontend directory
cd stamp_frontend/ cd frontend/
# Install dependencies # Install dependencies
npm install npm install

View File

@@ -1,7 +1,7 @@
services: services:
backend: backend:
build: build:
context: ./stamp_backend context: ./backend
container_name: stamp-backend container_name: stamp-backend
ports: ports:
- "8000:8000" - "8000:8000"
@@ -21,7 +21,7 @@ services:
frontend: frontend:
build: build:
context: ./stamp_frontend context: ./frontend
container_name: stamp-frontend container_name: stamp-frontend
ports: ports:
- "4000:4000" - "4000:4000"

View File

@@ -1,11 +1,11 @@
{ {
"name": "quiz-app", "name": "frontend",
"version": "0.1.0", "version": "0.1.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "quiz-app", "name": "frontend",
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"@testing-library/jest-dom": "^5.17.0", "@testing-library/jest-dom": "^5.17.0",

View File

@@ -1,5 +1,5 @@
{ {
"name": "stamp_frontend", "name": "frontend",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"dependencies": { "dependencies": {

View File

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB