diff --git a/.gitignore b/.gitignore index 1406094..ca09863 100644 --- a/.gitignore +++ b/.gitignore @@ -45,8 +45,8 @@ $RECYCLE.BIN/ .vagrant Vagrantfile -.docker-compose.yml -.DockerFile +docker-compose*.yml +Dockerfile #------------------------- # Temporary Files diff --git a/app/Config/Routes.php b/app/Config/Routes.php index 64faa24..4dcb769 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -8,3 +8,6 @@ use CodeIgniter\Router\RouteCollection; $routes->get('/', 'Home::index'); $routes->get('/hello', 'Home::hello'); + + +$routes->get('/dashboard', 'Main::dashboard'); diff --git a/confirms/.gitignore b/confirms/.gitignore deleted file mode 100644 index f008aed..0000000 --- a/confirms/.gitignore +++ /dev/null @@ -1,39 +0,0 @@ -*/config/development -*/logs/log-*.php -!*/logs/index.html -*/cache/* -!*/cache/index.html -!*/cache/.htaccess - -user_guide_src/build/* -user_guide_src/cilexer/build/* -user_guide_src/cilexer/dist/* -user_guide_src/cilexer/pycilexer.egg-info/* - -#codeigniter 3 -application/logs/* -!application/logs/index.html -!application/logs/.htaccess -/vendor/ - -# 1. VS Code 설정 -.vscode/ - -# 2. 빌드 결과물 및 임시 파일 -/dist -/build -/out -*.log -*.tmp - -# 3. Node.js (가장 흔하게 사용되는 예시 중 하나) -/node_modules - -# 4. 운영체제 파일 -.DS_Store -Thumbs.db - -# 5. 민감 정보 파일 -.env - -.history/ \ No newline at end of file diff --git a/confirms/README b/confirms/README deleted file mode 100644 index 3ea01d7..0000000 --- a/confirms/README +++ /dev/null @@ -1 +0,0 @@ -여기 작업 하면 어떻게 되나? \ No newline at end of file diff --git a/confirms/README.md b/confirms/README.md deleted file mode 100644 index 032fa80..0000000 --- a/confirms/README.md +++ /dev/null @@ -1,6 +0,0 @@ -## confirms -> Creator: jjstyle00 -> Date: 2025/12/01 - -## Description -* confirms에 대한 설명을 작성하세요 \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index b461410..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,32 +0,0 @@ -version: "3.9" - -services: - web: - build: . - container_name: ci4-web - ports: - - "8800:80" # localhost:8080 -> Apache - volumes: - - ./:/var/www/html # 현재 CI4 프로젝트 전체를 컨테이너에 마운트 - environment: - CI_ENVIRONMENT: development - depends_on: - - db - restart: unless-stopped - - db: - image: mysql:8.0 - container_name: ci4-mysql - environment: - MYSQL_ROOT_PASSWORD: 123456 - MYSQL_DATABASE: ci4db - MYSQL_USER: ci4user - MYSQL_PASSWORD: ci41234 - ports: - - "3308:3306" # 호스트 3308 포트로 MySQL 접속 - volumes: - - ci4-db-data:/var/lib/mysql - restart: unless-stopped - -volumes: - ci4-db-data: