Dart と Flutter 用の Code-Server を VPS で
VPS上にCode-server を、立ち上げて
Flutter For Web の 開発してみた..
VSCode Plugin も 使えます!!
VPS 上に Code-server を立ち上げる
$ apt-get update
$ curl -fsSL https://code-server.dev/install.sh | sh
$ systemctl enable --now code-server@root
// Created symlink /etc/systemd/system/default.target.wants/[email protected] → /lib/systemd/system/[email protected].
パスワードの設定とか (Optional)
$ vi /root/.config/code-server/config.yaml
bind-addr: 0.0.0.0:8080
auth: password
password: MyFlutter-0213f
cert: false
$ systemctl restart code-server@root
Flutter を インストール
$ apt-get install curl -y
$ apt-get install git -y
$ apt-get install unzip -y
$ apt-get install zip -y
$ git clone https://github.com/flutter/flutter.git
$ export PATH="$PATH:`pwd`/flutter/bin"
$ flutter doctor
Flutter Web を 設定
$ flutter channel beta
$ flutter upgrade
$ flutter config --enable-web
$ flutter devices
サンプルを試してみよう
$ flutter create myapp
$ cd myapp
$ flutter build web
$ flutter run -d web-server --web-port=18080 --web-hostname=0.0.0.0
$ flutter create myapp
$ cd myapp
$ flutter build web
$ flutter run -d web-server --web-port=18080 --web-hostname=0.0.0.0
PS
以下でも書いてます
Conoha の 4GBプランを試しました
快適です
https://www.conoha.jp/vps/?btn_id=header_vps
Author And Source
この問題について(Dart と Flutter 用の Code-Server を VPS で), 我々は、より多くの情報をここで見つけました https://qiita.com/kyorohiro/items/ee564fe4d21719580c54著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .