https://github.com/compositionalit/azure-deploy
Proof of concept using SAFE Stack and Farmer for a self-service Azure deployment application.
https://github.com/compositionalit/azure-deploy
Last synced: 8 months ago
JSON representation
Proof of concept using SAFE Stack and Farmer for a self-service Azure deployment application.
- Host: GitHub
- URL: https://github.com/compositionalit/azure-deploy
- Owner: CompositionalIT
- Created: 2020-05-24T16:55:39.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-02T10:15:13.000Z (almost 3 years ago)
- Last Synced: 2023-06-02T10:43:36.521Z (almost 3 years ago)
- Language: F#
- Size: 1.79 MB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SAFE Template
This template can be used to generate a full-stack web application using the [SAFE Stack](https://safe-stack.github.io/). It was created using the dotnet [SAFE Template](https://safe-stack.github.io/docs/template-overview/). If you want to learn more about the template why not start with the [quick start](https://safe-stack.github.io/docs/quickstart/) guide?
## Install pre-requisites
You'll need to install the following pre-requisites in order to build SAFE applications
* The [.NET Core SDK](https://www.microsoft.com/net/download)
* The [Yarn](https://yarnpkg.com/lang/en/docs/install/) package manager (you can also use `npm` but the usage of `yarn` is encouraged).
* [Node LTS](https://nodejs.org/en/download/) installed for the front end components.
* If you're running on OSX or Linux, you'll also need to install [Mono](https://www.mono-project.com/docs/getting-started/install/).
## Work with the application
Before you run the project **for the first time only** you should install its local tools with this command:
```bash
dotnet tool restore
```
To concurrently run the server and the client components in watch mode use the following command:
```bash
dotnet fake build -t run
```
## SAFE Stack Documentation
You will find more documentation about the used F# components at the following places:
* [Saturn](https://saturnframework.org/docs/)
* [Fable](https://fable.io/docs/)
* [Elmish](https://elmish.github.io/elmish/)
* [Fable.Remoting](https://zaid-ajaj.github.io/Fable.Remoting/)
* [Fulma](https://fulma.github.io/Fulma/)
If you want to know more about the full Azure Stack and all of it's components (including Azure) visit the official [SAFE documentation](https://safe-stack.github.io/docs/).