当前位置:网站首页>Quickly build a website with static files
Quickly build a website with static files
2022-08-04 01:03:00 【A-L-Kun】
Article table of contents
Deploy static files
I. Initialization
1. Create a file
First of all, we need to create our file, which can be written with a little content.Then the static files we wrote are added to the GitHub remote repository using git for us to deploy, here IIt is a simple post-management page built using the bootstrap framework, and also sets up the login interface and a help document
2. Upload file
We create a warehouse WebTest on GitHub to store our code, and the creation of the warehouse is also in articleMedium
After the repository is created, we start uploading our files. After the upload is complete, as shown below:

Then we start deploying our website
Second, GitHub
1. Basic deployment
First, let's talk about using GitHub to deploy a website

Then we can access our deployed projects through https://liuzhongkun1.github.io/WebTest/
The project address is: https://github.com/liuzhongkun1/WebTest
Principle:
We visit: https://liuzhongkun1.github.io/WebTest/ This address is equivalent to visiting https://liuzhongkun1.github.io/WebTest/index.htmlThe default access address of GitHub is index.htmlSo what should I do if I want to access help.html?Similar to the above visit, except that we need to enter the html file path:https://liuzhongkun1.github.io/WebTest/help.htmlSpecial Features:
Create a project named xxx.github.io (xxx is your username), and then deploy in the above way to get xxx.github.io .
For example, if my Github username is
liuzhongkun1, create a repository namedliuzhongkun1.github.ioand deploy it there.
2, framework deployment
Then the question is, how should we deploy Vue, react and other frameworks?
It's also very simple. These frameworks are essentially web files. We need to compile locally, package and create them, and then upload the files in the build directory to the prepared ones through git.In warehouse
The rest of the steps are similar to the above
Third, netlify
Then we will learn how to use netlify to deploy our static website
First we need to log in to this website with GitHub account, click import from Git

Click steps:
import from Git -> GitHub -> Authorize ->After authorization, select the warehouse where we need to deploy the website

Then we can configure our file

Skip the warning, because we are using static files and don't need to compile and then run the deployment, we can see

Let's take a look at the log information during the deployment process

So, can we change our site name?The answer is yes

Our site name changed from https://bucolic-figolla-b8ffb4.netlify.app/https://lzk.netlify.app/
At the same time, we can also bind the domain name we purchased to this:


However, since I don't have a domain name for the time being, I won't continue writing. You can read the official documentation to bind your own domain name.
边栏推荐
- 一文参透分布式存储系统Ceph的架构设计、集群搭建(手把手)
- 如何通过API接口从淘宝(或天猫店)复制宝贝到拼多多接口代码对接教程
- Electronics manufacturing enterprise deployment WMS what are the benefits of warehouse management system
- typescript57 - Array generic interface
- typescript53-泛型约束
- typescript52 - simplify generic function calls
- 身为程序员的我们如何卷死别人?破局重生。
- Array_Sliding window | leecode brushing notes
- 哎,又跟HR在小群吵了一架!
- C语言 函数递归
猜你喜欢
随机推荐
jmeter分布式压测
【正则表达式】笔记
boot issue
.NET静态代码织入——肉夹馍(Rougamo) 发布1.1.0
typescript53 - generic constraints
FeatureNotFound( bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requested:
有没有jdbc 链接优炫数据库文档及示例?
数据库扩容也可以如此丝滑,MySQL千亿级数据生产环境扩容实战
【QT小记】QT中信号和槽的基本使用
咱们500万条数据测试一下,如何合理使用索引加速?
Spinnaker调用Jenkins API 返回403错误
nodejs+express实现数据库mysql的访问,并展示数据到页面上
XSS-绕过for循环过滤
虚拟机CentOS7中无图形界面安装Oracle
【性能优化】MySQL常用慢查询分析工具
C 学生管理系统 显示链表信息、删除链表
MySQL回表指的是什么
【超详细教程】LVS+KeepAlived高可用部署实战应用
【无标题】
哎,又跟HR在小群吵了一架!








