Please list the whole process from inception to the final moment when the site is live on the domain. What are the tools you use? What are the steps involved?
I've been a web developer since 1996. I built dozens of websites professionally before moving on to building apps in many industries, including finance and insurance.<p>I can, without hesitation, wholeheartedly endorse SquareSpace because it requires zero of my skills. It makes so many painful things painless. I have no idea why people put static websites on their own infrastructure, especially when anything moderately popular needs paid DDoS protection anyway.<p>In fact, with all the modules, my website would have to get pretty fancy (beyond ecommerce, beyond CMS) before I'd build a custom solution.<p>I've actually turned away at least 10 clients (who would have paid me $10k+ each) and told them to just build it themselves with SquareSpace and hire a designer instead. I feel like it's unethical to take those contracts as a developer anymore.
I use Hugo [0] as a static website generator. They have plenty of themes [1] to choose from. You can still adjust it with basic knowledge in HTML/CSS. Afterward you can chose where to host it. You can use Github Pages [2] for free or pay for a service like DigitalOcean (starting with 5€ a month which scales well) [3]. I wrote a technical cheatsheet [4] on how to setup your own website with these ingredients.<p>- [0] <a href="https://gohugo.io/" rel="nofollow">https://gohugo.io/</a><p>- [1] <a href="http://themes.gohugo.io/" rel="nofollow">http://themes.gohugo.io/</a><p>- [2] <a href="https://pages.github.com/" rel="nofollow">https://pages.github.com/</a><p>- [3] <a href="https://www.digitalocean.com/" rel="nofollow">https://www.digitalocean.com/</a><p>- [4] <a href="https://www.robinwieruch.de/own-website-in-five-days/" rel="nofollow">https://www.robinwieruch.de/own-website-in-five-days/</a>
I use static website for my blog. Tools I use:<p>* Jekyll for static site generator<p>* GitLab Pages for storing changes as well as deploying site and costuming domain/SSL<p>* Vim editor for making changes<p>Steps:<p>1. Clone existed Jekyll's files from GitLab Pages's repository into local.<p>2. Making changes.<p>3. Push the changes into remote repository<p>4. Custom domain and SSL.<p>Of course, I don't need to clone repository and custom domain again if my site has already lived. I just need to update SSL when my certificate expires. You can check this page [1] for further details.<p>[1]: <a href="https://about.gitlab.com/features/pages/" rel="nofollow">https://about.gitlab.com/features/pages/</a>
Static website? Just write HTML files in text editor and copy to a server running nginx via ftp.<p>If you are going to make changes to the website often, add an extra step for creating git repository and instead of using FTP to push files to server just pull from git.
Open Coda (my code editor)<p>Begin typing content (as TXT or MD)<p>Turn that into HTML manually add DOCTYPE, tags, CSS, and mark up my content.<p>Host either on Github pages (use terminal in my editor to push to Github) or upload to my own web server, or Amazon S3 from the file manager in my editor.<p>View static page in browser.
Middleman[1] and a rake task running rsync.<p>[1] <a href="https://middlemanapp.com/" rel="nofollow">https://middlemanapp.com/</a>