Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kavignon/fs-store
Mock SAFE web application built as part of the deep dive in F# in during the fall mentorship of 2019.
https://github.com/kavignon/fs-store
Last synced: 17 days ago
JSON representation
Mock SAFE web application built as part of the deep dive in F# in during the fall mentorship of 2019.
- Host: GitHub
- URL: https://github.com/kavignon/fs-store
- Owner: Kavignon
- License: mit
- Created: 2019-05-09T01:50:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T07:02:19.000Z (almost 2 years ago)
- Last Synced: 2023-09-18T21:01:39.012Z (about 1 year ago)
- Language: F#
- Homepage:
- Size: 1.81 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
* [FAKE 5](https://fake.build/) installed as a [global tool](https://fake.build/fake-gettingstarted.html#Install-FAKE)
* The [Yarn](https://yarnpkg.com/lang/en/docs/install/) package manager (you an 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
To concurrently run the server and the client components in watch mode use the following command:
```bash
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/)
* [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/).
## Troubleshooting
* **fake not found** - If you fail to execute `fake` from command line after installing it as a global tool, you might need to add it to your `PATH` manually: (e.g. `export PATH="$HOME/.dotnet/tools:$PATH"` on unix) - [related GitHub issue](https://github.com/dotnet/cli/issues/9321)