| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
noun
1. the top or highest part of something
language
2. a top-down / API-first description language for modeling and generating cloud-native applications
TODO
TODO
TODO
Windows
powershell -Command "iwr -useb https://raw.githubusercontent.com/apexlang/cli/main/install/install.ps1 | iex"
MacOS
curl -fsSL https://raw.githubusercontent.com/apexlang/cli/main/install/install.sh | /bin/bash
Linux
wget -q https://raw.githubusercontent.com/apexlang/cli/main/install/install.sh -O - | /bin/bash
Homebrew
brew install apexlang/tap/apex
TODO
Verify you have Go 1.17+ installed
go versionIf Go is not installed, download and install Go 1.17+ (brew installation is not recommended because of CGO linker warnings)
Clone the project from github
git clone https://github.com/apexlang/apex.git
cd cli
go install ./cmd/...Compiling on Windows
In order to build a project using v8go on Windows, Go requires a gcc compiler to be installed.
To set this up:
V8 requires 64-bit on Windows, therefore it will not work on 32-bit systems.
Confirm apex runs (The Go installation should add ~/go/bin in your PATH)
apex --helpOutput:
Usage: apex <command>
Flags:
-h, --help Show context-sensitive help.
Commands:
install <location> [<release>]
Install a module.
generate [<config>]
Generate code from a configuration file.
watch [<configs> ...]
Watch configuration files for changes and trigger code generation.
new <template> <dir> [<variables> ...]
Creates a new project from a template.
init <template> [<variables> ...]
Initializes an existing project directory from a template.
upgrade
Upgrades to the latest base modules dependencies.
version
Run "apex <command> --help" for more information on a command.
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
This project is licensed under the Apache License 2.0 - see the LICENSE.txt file for details
| Back | FazBrowse Home | New Git URL |