Navigate to: Configuration > Development > Performance, then enable Aggregate CSS files and Aggregate JavaScript files and click Save Configuration.
Navigate to: Configuration > Tome Static > Generate static site
In the Base URL field, input the base URL of your site and click "Submit".
After three sets of progress bars complete, your static site will be have been generated.
You can now navigate to: Configuration > Tome Static > Download static site to download your generated site in .tar.gz format. This file can be unzipped and uploaded to static hosting providers such as Amazon S3.
Once you have generated a static site via the UI, you can preview the site by navigating to: Configuration > Tome Static > Preview static site
You will see a small overlay at the top of this page which indicates you are viewing the static version of your site and not the standard Drupal front end.
Open your terminal and run the following drush command
drush tome:static --uri=http://localhost:8000
The URI parameter should be set to the URL of your static site. This command will then start to generate your static site, first the HTML.
Secondly, the assets and paths will be generated.
The generated files will be exported to an HTML folder outside your project root folder.
Open your terminal and navigate to the HTML folder that Tome has created and then run the following command:
php -S localhost:8000
This will start a web server and allow you to test the static site at http://localhost:8000/ in your web browser.
Now the static site has been generated, you are free to upload your static site to simple document storage hosting such as Amazon S3. To find out more about Tome, refer to their documentation here.
If this content did not answer your questions, try searching or contacting our support team for further assistance.