Closed3

Cloud9 上で Astro を用いてホームページを作成して Vercel にデプロイ!

EunsolEunsol

1. Install Astro

npm create astro@latest -- --template <template name>

2.Edit astro.config.mjs for Cloud9

import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({
    server: { port: 8080 },
});

3. Start the dev server

cd ./tasty-tower
npm run dev

4. Create SSH Key

cd ~/.ssh
ls -ltr
ssh-keygen
cat ~/.ssh/id_rsa.pub

5. Push to Git

git remote add origin git@github.com:<github name>/<repository name>.git
git add .
git commit -m "<Comment>"
git push -u origin main

6.Connect to Vercel

  • 会員登録する
  • 該当のリポジトリと連携する
このスクラップは2023/04/23にクローズされました