diff --git a/README.md b/README.md index 25c428c..8d27749 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,19 @@ For detailed instructions, see the [official Webflow Code Export guide](https:// - Basic knowledge of terminal commands ### Steps to Deploy + +/** + * How to open terminal on different operating systems: + * + * - Ubuntu/Linux: Ctrl+Alt+T + * - Windows: + * - Windows+R, then type "cmd" or "powershell" and press Enter + * - Or search for "Terminal" or "Command Prompt" in the Start menu + * - macOS: + * - Command+Space, then type "terminal" and press Enter + * - Or find Terminal in Applications/Utilities folder + */ + 1. Clone this repository to your server: ```bash git clone https://gitea.bnkhome.org/bnkops/webflow.quick.server.git @@ -73,6 +86,21 @@ For detailed instructions, see the [official Webflow Code Export guide](https:// 2. Extract your Webflow code export/copy all files into the `website/` directory +/** + * How to find directories on different operating systems: + * + * - Ubuntu/Linux: + * - Use the "Files" app (similar to Explorer/Finder) + * - Or in terminal: `find / -name "webflow.quick.server" 2>/dev/null` + * - Windows: + * - Open File Explorer (Windows+E) + * - Navigate through folders or use search in top-right + * - Or in Command Prompt: `dir /s /b C:\webflow.quick.server*` + * - macOS: + * - Use Finder (Command+Space, type "finder") + * - Or in terminal: `find / -name "webflow.quick.server" 2>/dev/null` + */ + 3. Navigate to the project directory: ```bash cd path/to/webflow.quick.server