No description
Find a file
2022-05-10 21:27:45 -04:00
.config paket 2022-05-10 21:19:41 -04:00
.idea Rename sln 2022-04-28 18:43:48 -04:00
src paket 2022-05-10 21:19:41 -04:00
tests paket 2022-05-10 21:19:41 -04:00
.gitattributes Initial Commit 2021-12-22 13:05:51 -05:00
.gitignore paket 2022-05-10 21:19:41 -04:00
CrosswordFable.sln paket 2022-05-10 21:19:41 -04:00
Dockerfile Dockerfile while I'm here 2022-04-28 18:34:28 -04:00
global.json Upgrade F# and dotnet 2022-04-28 18:06:37 -04:00
justfile paket 2022-05-10 21:19:41 -04:00
package-lock.json Vite! 2022-04-28 17:51:19 -04:00
package.json updates 2022-05-10 21:27:45 -04:00
paket.dependencies paket 2022-05-10 21:19:41 -04:00
paket.lock paket 2022-05-10 21:19:41 -04:00
pnpm-lock.yaml updates 2022-05-10 21:27:45 -04:00
README.md Initial Commit 2021-12-22 13:05:51 -05:00
vite.config.js Vite! 2022-04-28 17:51:19 -04:00

Feliz Template

This template gets you up and running with a simple web app using Fable , Elmish and Feliz.

Requirements

Editor

To write and edit your code, you can use either VS Code + Ionide, Emacs with fsharp-mode, Rider or Visual Studio.

Development

Before doing anything, start with installing npm dependencies using npm install.

Then to start development mode with hot module reloading, run:

npm start

This will start the development server after compiling the project, once it is finished, navigate to http://localhost:8080 to view the application .

To build the application and make ready for production:

npm run build

This command builds the application and puts the generated files into the deploy directory (can be overwritten in webpack.config.js).

Tests

The template includes a test project that ready to go which you can either run in the browser in watch mode or run in the console using node.js and mocha. To run the tests in watch mode:

npm run test:live

This command starts a development server for the test application and makes it available at http://localhost:8085.

To run the tests using the command line and of course in your CI server, you have to use the mocha test runner which doesn't use the browser but instead runs the code using node.js:

npm test