kemal-rest-api
Kemal REST API
Simple REST API example with Kemal micro web framework, in CRUD use cases.
Features
- Crecto, Database wrapper and ORM for Crystal.
- Micrate, database migration tool for Crystal.
- Database use PostgreSQL.
- Test specs example.
Endpoints
HTTP Method | Path | Description |
---|---|---|
GET | /api/customers | Get all existing customer data |
GET | /api/customers/:id | Get existing customer data by Id |
POST | /api/customers | Insert new customer data |
PUT | /api/customers/:id | update existing customer data by Id |
DELETE | /api/customers/:id | Delete existing customer data by Id |
Build and run on local
Install Crystal language.
# Clone the project
git clone https://github.com/mkdika/kemal-rest-api.git
cd kemal-rest-api/
# Install related dependencies
shards install
# create environment variable, you can adjust your db connection string
export DB_URL='postgres://postgres:postgres@localhost:5432/kemal_rest_api'
# Run db setup (create db & run migrations)
crystal run src/util/db_setup.cr
# Run all test specs
crystal spec
# Build binary
shards build --production --release
# run the app
./bin/server
# output: [development] Kemal is ready to lead at http://0.0.0.0:3000
# Optionally, run kemal in `production` environmen & custom port
KEMAL_ENV=production ./bin/server 80
# output: [production] Kemal is ready to lead at http://0.0.0.0:80
Contributing
- Fork it (https://github.com/mkdika/kemal-rest-api/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Maikel Chandika - creator and maintainer
Copyright and License
Copyright 2020 Maikel Chandika (mkdika@gmail.com). Code released under the MIT License. See LICENSE file.
Repository
kemal-rest-api
Owner
Statistic
- 7
- 0
- 0
- 0
- 5
- over 4 years ago
- May 9, 2020
License
MIT License
Links
Synced at
Thu, 21 Nov 2024 07:01:32 GMT
Languages