android课设记录一下制作过程
SDK:API24("Nougat";Android 7.0) Win10 -> Win11
Win10 -> Win11
详细代码在GitHub:https://github.com/L-mj0
大约 19 分钟
android课设记录一下制作过程
SDK:API24("Nougat";Android 7.0) Win10 -> Win11
Win10 -> Win11
详细代码在GitHub:https://github.com/L-mj0
📍 地区:福建厦门
🐣 出生:2003.03
🎓 学历:本科大四在读
🏫 院校:厦门大学嘉庚学院
🕮 专业:智能科学与技术
2023-2024 & 2022-2023 & 2021-2022 First Class Outstanding Student Scholarship
2021-2022 Second Class Scholarship
😥写一个部署网页的详细步骤,以防我又漏掉或者忘记什么步骤了😭
前提:购买了自己的域名(我是在阿里云)
服务器配制:
wget -O install.sh https://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh ed8484bec
注意
安装完成后一定要注意:等它安装完一定不能直接关掉,他会给你面板账户登录信息,一定要截图,备忘录保存下来,用户名,密码等。记录完就可以进入到他给你的面板地址。
进入网站,下载 Nginx,添加站点
域名可以填二级域名也可以填三级域名。比如我这边就填三级域名:blog.lprincess.top
git clone
一份到服务器里 git clone https//github.com/xxx/xxx.git
这里命令的就是把你放在 git 仓库里的项目 clone 一份到服务器中,在这之前,要先再服务器安装 git ,apt install git-all
,可以执行git --version
查看 git 版本。apt install nodejs npm
,再nodejs --version
,一般查看版本是v10.19.0
但是yarn
后面会报错,查了资料知道 ubuntu20 上默认用 apt install 安装的 nodejs 版本是 v10.几官方提供了对应的脚本, 下面的setup_20.x 如果你需要什么版本就修改setup_xx.x
curl -sL https://deb.nodesource.com/setup_20.x -o /tmp/nodesource_setup.sh
bash /tmp/nodesource_setup.sh
apt install nodejs
node -v
npm install yarn -g
,建立软连接 将yarn命令软链接到全局ln -s /usr/local/nodejs/bin/yarn /usr/local/bin
yarn docs:build
,网页就成功部署到服务器上啦现在查网址ip就是在服务器上啦
😩Problem
记录在建站期间所遇到的各种各样莫名其妙的问题
Error: useRouteLocale() is called without provider.error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.