Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/donrestarone/juliaongenie
a quick test drive of the Genie web framework.
https://github.com/donrestarone/juliaongenie
Last synced: 11 days ago
JSON representation
a quick test drive of the Genie web framework.
- Host: GitHub
- URL: https://github.com/donrestarone/juliaongenie
- Owner: donrestarone
- Created: 2020-10-11T23:26:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-12T01:16:25.000Z (over 4 years ago)
- Last Synced: 2024-11-14T15:08:09.132Z (2 months ago)
- Language: Julia
- Size: 462 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JuliaOnGenie
a quick test drive of the Genie web framework.##### Table of Contents
[Bootstrapping a new app](#bootstrap)
[Installation](#install)
[Troubleshooting](#troubleshooting)
## Bootstrapping a new app
to install Genie: Jump to the Julia REPL and load the Pkg REPEL (REPL in a REPL-- I know) by pressing "]"
``` bash
julia
$pkg> add Genie
```to create a new app with the generator
``` bash
julia
$julia> using Genie
$julia> Genie.newapp("HelloWorld")
```to start the Genie server
```bash
bin/repl
$julia> up()
```add database support
```bash
$julia> Genie.Generator.db_support()
```generate controller
```bash
$julia> Genie.newcontroller("Tasks")
```