https://github.com/appifyhub/the-agent-landing
The Agent's Landing Page
https://github.com/appifyhub/the-agent-landing
Last synced: 3 months ago
JSON representation
The Agent's Landing Page
- Host: GitHub
- URL: https://github.com/appifyhub/the-agent-landing
- Owner: appifyhub
- License: mit
- Created: 2024-09-02T19:18:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-10-28T17:29:30.000Z (6 months ago)
- Last Synced: 2025-10-28T19:24:29.206Z (6 months ago)
- Language: SCSS
- Homepage: https://agent.appifyhub.com/
- Size: 1.72 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The Agent · Landing Page
The source code of The Agent's landing page.
## How to run locally
* First, ensure that NodeJS & Node Package Manager (npm) are both installed. If they're not installed, choose your OS and installation method from [this page](https://nodejs.org/en/download/package-manager) and follow the installation instructions.
* This page requires Node 14 to work. You can handle multiple node versions with [NVM](https://github.com/nvm-sh/nvm), for example.
* Next, use your command line to enter your project directory.
* Run `npm install` to install all of the dependencies into your project. This should automatically clean, inspect, build and prepare the sources for distribution.
* Run `npm run watch` to start a local server and open the page in your default browser. The server will watch for any changes in the `src` directory and automatically inject them into the distribution. Distribution is already available at `./dist`.
In case you get a dependency conflict, feel free to run the installation command with `--force` applied.
#### _Important_
> ⚠️ Don't forget to copy `git` hooks from `/hooks` to `.git/hooks` before starting your work!
And now you're ready to go!
#### _Pro tip_
> Run any of the available task by typing `npm run ` (where "task" is the name of the task in the `"scripts"` object in `package.json`). The most useful task for rapid development is `watch`. It will start a new server, open up a browser and watch for any SCSS or JS changes in the `src` directory; once it compiles those changes, the browser will automatically inject the changed file(s) into your distribution.