포트폴리오를 만들기 시작해 무료로 공개한다(우선은 형태만)
나는 지금까지 없어도 어떻게 되어 있었습니다만, 역시 앞으로는 필요하다고 피부로 느끼고 있습니다.
무료로 포트폴리오를 만들 수 있는 웹 서비스도 많이 있다고 생각합니다만,
나는 실릴 수 있는 제작 실적이 별로 없기 때문에, 포트폴리오 자체를 제작 실적의 일부로 해 버리고 싶다,
굳이 자작을 선택했습니다.
다만, 시간도 예산도 거의 없기 때문에, 무료로 빨리 우선은 공개하고 싶다,
원래 계정을 가지고 있던 firebase에 포트폴리오용 프로젝트를 추가하여 공개했습니다.
firebase에 프로젝트 추가
포트폴리오용 프로젝트 구성 만들기
mkdir portfolio
firebase 구성 파일 준비
portfolio/firebase.json{
"hosting": {
"public": "public"
}
}
설치되지 않은 경우 Firebase 도구를 전역 설치
npm install -g firebase-tools
firebase에 로그인하고 프로젝트 초기화
cd portfolio
firebase login
firebase init
#firebase管理コンソールで追加したプロジェクトへホスティングするように選択
? Which Firebase CLI features do you want to setup for this folder? Press Space to select features, then Enter to confirm your choices. (Press <space> to select)
◯ Hosting: Configure and deploy Firebase Hosting sites
? Select a default Firebase project for this directory: (Use arrow keys)
portfolio
#これが出たら初期設定完了
✔ Firebase initialization complete!
Project creation is only available from the Firebase Console
업로드할 HTML 파일 준비
mkdir public
touch index.html
index.html의 내용을 기술 (우선은 형태만 적당히...)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Masaaki Uegaki</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="msapplication-starturl" content="/">
</head>
<body>
Hello Portfolio!
</body>
</html>
완성된 프로젝트 구성
firebase에 배포
firebase deploy
✔ Deploy complete!
이것으로 공개 완료입니다.
htps : //포rt후오오893에 f. 흠뻑 빠지다 p. 코m/
그럼, 중요한 포트폴리오의 내용을 앞으로 만듭니다. . .
Reference
이 문제에 관하여(포트폴리오를 만들기 시작해 무료로 공개한다(우선은 형태만)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/uegaki-masaaki/items/4ec8390268e48d5a9eb4
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
mkdir portfolio
firebase 구성 파일 준비
portfolio/firebase.json{
"hosting": {
"public": "public"
}
}
설치되지 않은 경우 Firebase 도구를 전역 설치
npm install -g firebase-tools
firebase에 로그인하고 프로젝트 초기화
cd portfolio
firebase login
firebase init
#firebase管理コンソールで追加したプロジェクトへホスティングするように選択
? Which Firebase CLI features do you want to setup for this folder? Press Space to select features, then Enter to confirm your choices. (Press <space> to select)
◯ Hosting: Configure and deploy Firebase Hosting sites
? Select a default Firebase project for this directory: (Use arrow keys)
portfolio
#これが出たら初期設定完了
✔ Firebase initialization complete!
Project creation is only available from the Firebase Console
업로드할 HTML 파일 준비
mkdir public
touch index.html
index.html의 내용을 기술 (우선은 형태만 적당히...)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Masaaki Uegaki</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="msapplication-starturl" content="/">
</head>
<body>
Hello Portfolio!
</body>
</html>
완성된 프로젝트 구성
firebase에 배포
firebase deploy
✔ Deploy complete!
이것으로 공개 완료입니다.
htps : //포rt후오오893에 f. 흠뻑 빠지다 p. 코m/
그럼, 중요한 포트폴리오의 내용을 앞으로 만듭니다. . .
Reference
이 문제에 관하여(포트폴리오를 만들기 시작해 무료로 공개한다(우선은 형태만)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/uegaki-masaaki/items/4ec8390268e48d5a9eb4
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
{
"hosting": {
"public": "public"
}
}
npm install -g firebase-tools
firebase에 로그인하고 프로젝트 초기화
cd portfolio
firebase login
firebase init
#firebase管理コンソールで追加したプロジェクトへホスティングするように選択
? Which Firebase CLI features do you want to setup for this folder? Press Space to select features, then Enter to confirm your choices. (Press <space> to select)
◯ Hosting: Configure and deploy Firebase Hosting sites
? Select a default Firebase project for this directory: (Use arrow keys)
portfolio
#これが出たら初期設定完了
✔ Firebase initialization complete!
Project creation is only available from the Firebase Console
업로드할 HTML 파일 준비
mkdir public
touch index.html
index.html의 내용을 기술 (우선은 형태만 적당히...)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Masaaki Uegaki</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="msapplication-starturl" content="/">
</head>
<body>
Hello Portfolio!
</body>
</html>
완성된 프로젝트 구성
firebase에 배포
firebase deploy
✔ Deploy complete!
이것으로 공개 완료입니다.
htps : //포rt후오오893에 f. 흠뻑 빠지다 p. 코m/
그럼, 중요한 포트폴리오의 내용을 앞으로 만듭니다. . .
Reference
이 문제에 관하여(포트폴리오를 만들기 시작해 무료로 공개한다(우선은 형태만)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/uegaki-masaaki/items/4ec8390268e48d5a9eb4
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
cd portfolio
firebase login
firebase init
#firebase管理コンソールで追加したプロジェクトへホスティングするように選択
? Which Firebase CLI features do you want to setup for this folder? Press Space to select features, then Enter to confirm your choices. (Press <space> to select)
◯ Hosting: Configure and deploy Firebase Hosting sites
? Select a default Firebase project for this directory: (Use arrow keys)
portfolio
#これが出たら初期設定完了
✔ Firebase initialization complete!
Project creation is only available from the Firebase Console
mkdir public
touch index.html
index.html의 내용을 기술 (우선은 형태만 적당히...)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Masaaki Uegaki</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="msapplication-starturl" content="/">
</head>
<body>
Hello Portfolio!
</body>
</html>
완성된 프로젝트 구성
firebase에 배포
firebase deploy
✔ Deploy complete!
이것으로 공개 완료입니다.
htps : //포rt후오오893에 f. 흠뻑 빠지다 p. 코m/
그럼, 중요한 포트폴리오의 내용을 앞으로 만듭니다. . .
Reference
이 문제에 관하여(포트폴리오를 만들기 시작해 무료로 공개한다(우선은 형태만)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/uegaki-masaaki/items/4ec8390268e48d5a9eb4
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Masaaki Uegaki</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="msapplication-starturl" content="/">
</head>
<body>
Hello Portfolio!
</body>
</html>
firebase deploy
✔ Deploy complete!
이것으로 공개 완료입니다.
htps : //포rt후오오893에 f. 흠뻑 빠지다 p. 코m/
그럼, 중요한 포트폴리오의 내용을 앞으로 만듭니다. . .
Reference
이 문제에 관하여(포트폴리오를 만들기 시작해 무료로 공개한다(우선은 형태만)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/uegaki-masaaki/items/4ec8390268e48d5a9eb4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)