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
# Navigate to backend directory
cd stamp_backend/
cd backend/
# Install uv
pip install uv
@@ -124,7 +124,7 @@ uvicorn src.main:app --host 0.0.0.0 --port 8000
```bash
# Navigate to frontend directory
cd stamp_frontend/
cd frontend/
# Install dependencies
npm install

View File

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

View File

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

View File

@@ -1,5 +1,5 @@
{
"name": "stamp_frontend",
"name": "frontend",
"version": "0.1.0",
"private": true,
"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