https://github.com/ocsigen/ocsigen-start
Ocsigen-start: Higher-level library to develop Web and mobile applications with users, (pre)registration, notifications, etc.
https://github.com/ocsigen/ocsigen-start
mobile mobile-app multi-platform ocaml ocsigen web web-app
Last synced: 6 months ago
JSON representation
Ocsigen-start: Higher-level library to develop Web and mobile applications with users, (pre)registration, notifications, etc.
- Host: GitHub
- URL: https://github.com/ocsigen/ocsigen-start
- Owner: ocsigen
- License: other
- Created: 2013-07-03T13:24:21.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2025-04-22T15:35:41.000Z (8 months ago)
- Last Synced: 2025-04-22T15:36:53.236Z (8 months ago)
- Topics: mobile, mobile-app, multi-platform, ocaml, ocsigen, web, web-app
- Language: OCaml
- Homepage:
- Size: 23.1 MB
- Stars: 76
- Watchers: 16
- Forks: 33
- Open Issues: 85
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Ocsigen Start [](https://github.com/ocsigen/ocsigen-start/actions/workflows/build.yml)
You can try the [online version](https://ocsigen.org/ocsigen-start/demo) and
download
the
[Android application](https://play.google.com/store/apps/details?id=com.osdemo.mobile&hl=en).
1. [Introduction](#introduction)
2. [Installation](#install)
3. [Create your project](#create-your-project)
### Introduction
Ocsigen Start is a set of higher-level libraries for building
client-server web applications with Ocsigen (Js_of_ocaml and
Eliom). It provides modules for
* user management (session management, registration, action — e.g., activation — keys, ...),
* managing groups of users,
* displaying tips, and
* easily sending notifications to the users.
Ocsigen Start comes with an `eliom-distillery` template for an app
with a database, user management, and session management. This
template is intended to serve as a basis for quickly building the
Minimum Viable Product for web applications with users. The goal is to
enable the programmer to concentrate on the core of the app, and not
on user management.
If Ocsigen Start corresponds to your needs, it will probably help you
a lot. If not, start with a simpler template. You can still use the
modules from Ocsigen Start.
We recommend using OPAM to install Ocsigen Start. Here is the command:
```
opam install ocsigen-start
```
### Create your project
```
eliom-distillery -name myproject -template os.pgocaml
```
To get started, take a look at the generated README.md.
You have also the complete manual and API available on
the [Ocsigen website](http://ocsigen.org/ocsigen-start/)