Some people use Static CMS to design things like Jekyll and Hexo, but almost none of these things have more user-friendly content editors, such as powerful things like Divi, so there is another trick, which is to edit the website with WordPress. , And then use some static generators to generate static websites. There is a set of the simplest and most effective to try: Simply Static. After installation, select "Save for offline use" in Settings and "Temporary Files Directory" in Advanced settings to set the path to be exported. The permissions of the path must be readable and writable. Then you can go to Generate and click "Generate Static Files". The set path may not allow you to click URL download directly, you can download it in other ways, or write an automatic sftp transmission to other places. After testing, the plug-in can normally produce the design and layout edited by Divi.
Why learn Grovvy The official recommended language of Gradle is Groovy, which is a jvm language. If you want to perform plug-in modules, hot repairs, complex construction systems, etc., you need a little understanding of Groovy. You don't need to learn the details of Groovvy. Generally, the benefits are too great. Low, like bloggers only use Gradle to build SpringBoot, and the main project language is not Groovy. There are quite a few Gradle users who have no basic concepts at all. Whenever they encounter a need or problem, they need to find it online. This is a misunderstanding. Gradle is not just a configuration script, I personally think that behind it is a combination of two languages: Groovy Language + Gradle DSL The DSL part can also be expanded. If you are using the Android ecosystem, there will also be Android DSL, a total of three. The full name of DSL is Domain Specific Language, that is, "domain specific language", which means that this language is not univer...
installation curl -fsSL https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add – echo “deb [arch=amd64,arm64] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse” | sudo tee /etc/apt/sources.list.d/mongodb-org- 4.4.list sudo apt update sudo apt install mongodb-org Start service Start MongoDB. sudo systemctl start mongod.service Check if it is active. sudo systemctl status mongod It starts automatically after booting. sudo systemctl enable mongod Check the connection, pay attention to whether it shows ok:1. mongo –eval'db.runCommand({ connectionStatus: 1 })' basic configuration Connect. mongo --host 127.0.0.1:27017 Set up the first administrator account, with the highest authority account, and then use it to set up other accounts. use admin; db.createUser( { user: “develop”, pwd: “1qaz@WSX#EDC”, roles: [{role: “userAdminAnyDatabase”, db: “admin”}] } ); exit; Open MongoDB authentication login. sudo vi /etc/mongod.conf Add the following sections: s...
Comments
Post a Comment