https://github.com/angelmunoz/safeperla
A SAFE stack template that uses Perla for the frontend rather than webpack/vite
https://github.com/angelmunoz/safeperla
fable fsharp fullstack safe safe-stack
Last synced: about 2 months ago
JSON representation
A SAFE stack template that uses Perla for the frontend rather than webpack/vite
- Host: GitHub
- URL: https://github.com/angelmunoz/safeperla
- Owner: AngelMunoz
- Created: 2022-09-27T21:35:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-27T21:35:14.000Z (over 2 years ago)
- Last Synced: 2025-03-10T07:01:48.870Z (about 2 months ago)
- Topics: fable, fsharp, fullstack, safe, safe-stack
- Language: F#
- Homepage:
- Size: 20.5 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
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
- [.NET Core SDK](https://www.microsoft.com/net/download) 6.0 or higher
## Starting the application
Before you run the project **for the first time only** you must install dotnet "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 run
```Then open `http://localhost:8080` in your browser.
The build project in root directory contains a couple of different build targets. You can specify them after `--` (target name is case-insensitive).
To run concurrently server and client tests in watch mode (you can run this command in parallel to the previous one in new terminal):
Finally, there are `Bundle` and `Azure` targets that you can use to package your app and deploy to Azure, respectively:
```bash
dotnet run -- Bundle
dotnet run -- Azure
```## SAFE Stack Documentation
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/).
You will find more documentation about the used F# components at the following places:
- [Saturn](https://saturnframework.org/)
- [Fable](https://fable.io/docs/)
- [Elmish](https://elmish.github.io/elmish/)