https://github.com/changjoo-park/amber-realworld-example-app
WIP. amber framework realworld example app
https://github.com/changjoo-park/amber-realworld-example-app
amber amber-framework crystal-language realworld
Last synced: about 1 year ago
JSON representation
WIP. amber framework realworld example app
- Host: GitHub
- URL: https://github.com/changjoo-park/amber-realworld-example-app
- Owner: ChangJoo-Park
- Created: 2018-01-24T13:28:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-31T06:09:55.000Z (over 8 years ago)
- Last Synced: 2025-05-12T02:48:39.000Z (about 1 year ago)
- Topics: amber, amber-framework, crystal-language, realworld
- Language: Crystal
- Size: 230 KB
- Stars: 9
- Watchers: 0
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# 
[](https://github.com/ChangJoo-Park/amber-realworld-example-app)
> ### Amber Framework codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.
### [Demo](https://github.com/gothinkster/realworld) [RealWorld](https://github.com/gothinkster/realworld)
This codebase was created to demonstrate a fully fledged fullstack application built with **Amber Framework** including CRUD operations, authentication, routing, pagination, and more.
We've gone to great lengths to adhere to the **Amber Framework** community styleguides & best practices.
For more information on how to this works with other frontends/backends, head over to the [RealWorld](https://github.com/gothinkster/realworld) repo.
# How it works
> Describe the general architecture of your app here
# Getting started
## Install Crystal
Read official [installation documentation](https://crystal-lang.org/docs/installation/)
## Install Amber Framework
Read official [installation documentation](https://amberframework.org/guides/getting-started/Installation/README.md#installation)
## Install Project
```bash
git clone https://github.com/ChangJoo-Park/amber-realworld-example-app
cd amber-realworld-example-app
shards install # install dependencies
amber db drop create migrate seed # initialize, migrate databases
amber w # run dev server
```