Skip to content

Commit

Permalink
Merge develop into main for version 1.1 release (Taegon21#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yanghyeondong committed Aug 28, 2024
2 parents 4599fbb + 5be19f0 commit a8e11aa
Show file tree
Hide file tree
Showing 58 changed files with 2,292 additions and 593 deletions.
32 changes: 24 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
# DevRoom Client
<div align=center>
<img width="100%" height="auto" src="https://github.com/user-attachments/assets/06e7882b-6b54-40ba-8466-1994943ab772">
<br/>
<br/>
<img src="https://img.shields.io/badge/next.js-000000?style=for-the-badge&logo=nextdotjs&logoColor=white">
<br/>

### ✏️ Commit Convention
<!-- ![version](https://img.shields.io/badge/version-1.0-white) -->
<!-- [![GitHub commit](https://img.shields.io/github/last-commit/Yanghyeondong/DEV-ROOM.svg)](https://github.com/Yanghyeondong/DEV-ROOM/pulse) -->
<!-- [![CodeFactor](https://www.codefactor.io/repository/github/yanghyeondong/DEV-ROOM/badge)](https://www.codefactor.io/repository/github/yanghyeondong/DEV-ROOM) -->
<br/>
</div>

# 📌 DevRoom: 교육용 개인 개발 컨테이너 관리 시스템

### 📚 [DevRoom 프로젝트 전체 소개](https://github.com/DEVROOM-OFFICIAL)
### - 📙 [DevRoom 프론트엔드 Repo](https://github.com/DEVROOM-OFFICIAL/DEVROOM-frontend)
### - 📗 [DevRoom 백엔드 Repo](https://github.com/DEVROOM-OFFICIAL/DEVROOM-backend)
### - 📘 [DevRoom K8s 운용 시스템 Repo](https://github.com/DEVROOM-OFFICIAL/DEVROOM-k8s)
<br>

## DevRoom Frontend

### ✏️ Commit Convention
✨ :sparkles: → 새기능
💄 :lipstick: → UI스타일 수정
♻️ :recycle: → 코드 리팩토링
Expand All @@ -14,10 +33,7 @@
🔀 :twisted_rightwards_arrows: → 머지
⏪ :rewind: → 리버트




## Getting Started
### Getting Started
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

First, run the development server:
Expand All @@ -38,7 +54,7 @@ You can start editing the page by modifying `app/page.tsx`. The page auto-update

This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.

## Learn More
### Learn More

To learn more about Next.js, take a look at the following resources:

Expand All @@ -47,7 +63,7 @@ To learn more about Next.js, take a look at the following resources:

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!

## Deploy on Vercel
### Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Expand Down
8 changes: 8 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ const nextConfig = {

return config;
},
async rewrites() {
return [
{
source: "/api/:path*",
destination: `${process.env.NEXT_PUBLIC_API_URL}/:path*`,
},
];
},
};

export default nextConfig;
Loading

0 comments on commit a8e11aa

Please sign in to comment.