crystalworld
Version, currently 0.7.015 versions
- 0.7.0latestAug 13, 2019
- 0.6.0not indexedApr 27, 2021
- 0.5.0not indexedApr 27, 2021
- 0.4.0not indexedApr 27, 2021
- 0.3.4not indexedApr 27, 2021
- 0.3.3not indexedApr 27, 2021
- 0.3.2not indexedApr 27, 2021
- 0.3.1not indexedApr 27, 2021
- 0.3.0not indexedApr 27, 2021
- 0.2.0not indexedApr 27, 2021
- 0.1.1not indexedApr 27, 2021
- 0.1.0not indexedApr 27, 2021
- 0.0.3not indexedApr 27, 2021
- 0.0.2not indexedApr 27, 2021
- 0.0.1not indexedApr 27, 2021
github.com/vladfaust/crystalworld
RealWorld back-end API implementation 👍
Installation
# Add this to your shard.yml
dependencies:
crystalworld:
github: vladfaust/crystalworld
version: ~> 0.7.0Then run:
shards installshard.yml
- Crystal
0.30.1- License
- MIT
- Author
- Vlad Faust
- Targets
cakefrom src/bin/cake.crserverfrom src/bin/server.cr
Dependencies
Runtime Dependencies
- jwt~> 0.4.0github: crystal-community/jwt
- onyx~> 0.6.0github: onyxframework/onyx
- migrate~> 0.5.0github: vladfaust/migrate.cr
- sqlite3~> 0.13.0github: crystal-lang/crystal-sqlite3
- onyx-sql~> 0.9.0github: onyxframework/sql
- cake-bake~> 0.2.0github: vladfaust/cake-bake.cr
- onyx-http~> 0.9.0github: onyxframework/http
README
Welcome to the Crystal World, a RealWorld back-end API application implemented in Crystal!
About
This project aims to demonstrate of how simple and enjoyable it is to develop a high-performance web application in Crystal, which is proven to be both fast and slick language, featuring:
- ⚡️ Efficiency comparable to C
- 🍃 Beauty inherited from Ruby
- 🔒 Type system with smart compiler
Crystal World relies on Onyx framework as its foundation. The database chosen is SQLite. Go ahead and read the source code, you'll find it delightfully simple and understandeable! 🍰
Note that although Crystal itself is not officially released yet, it's already being used in many real-world (including business) applications.
Installation
Clone this repository with
> git clone https://github.com/vladfaust/crystalworld.git && cd crystalworld
Crystal is a compiled language. It has different compilation modes, e.g. development and production. Production code is faster and packed into a single binary, however its builds take more time. Therefore, there are multiple ways to proceed:
Production build with Docker
- Build an image:
> docker build -t crystalworld:latest .
- Apply migrations:
> docker run -e DATABASE_URL="sqlite3://./crystalworld.db" crystalworld bin/cake db:migrate
- Launch the server
> docker run -p 5000:5000 -e DATABASE_URL="sqlite3://./crystalworld.db" \
-e JWT_SECRET_KEY="63a051d73d71c997d38946f82e708301" crystalworld
Production build from the source code
- Install Crystal on your machine
- Set env vars
> export DATABASE_URL="sqlite3://./crystalworld.db" CRYSTAL_ENV=production \
JWT_SECRET_KEY="63a051d73d71c997d38946f82e708301"
- Build the app
> time shards build --production --release --no-debug --progress --stats
- Apply migrations
> ./bin/cake db:migrate
- Launch the server
> ./bin/server
Development build from the source code
- Install Crystal on your machine
- Create an
/.env.development.localfile and put some environment variables there (see below) - Apply migrations
> crystal src/bin/cake.cr -- db:migrate
or install Cake and exec cake db:migrate
- Launch the server in development mode
> crystal src/bin/server.cr --progress
Example output:

Environment variables
Crystal World follows twelve-factor methodology and therefore relies on environment variables. You can see example and default variables at /.env.example file.
Testing
Crystal has a convenient testing environment built-in. Read more at Testing docs. Basically, you place specs under /spec folder and run them with crystal spec. It's also a good idea to have a separate /.env.test file.
Real World comes with integration testing suit, which can be found at https://github.com/gothinkster/realworld/tree/master/api. Crystal World uses this script in its CI, so if the badge is green it means that all the integration tests are passed. You can run these tests locally on your machine as well, just to be sure.
Contributors
- @vladfaust Vlad Faust - creator, maintainer
Licensing
This software is licensed under MIT License.
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.7.0- Tagged
- Aug 13, 2019
- Commit
d9880c35e2c3- Crystal
0.30.1- Indexed
- yes
Dependents
No indexed shard depends on this one yet.
Repository
github.com/vladfaust/crystalworld
Metadata
- Created
- Aug 12, 2026
- Updated
- Sep 23, 2026
- Synced
- Sep 23, 2026
- Versions
- 15
