https://github.com/clivern/rakon
🔥 Phoenix Framework In Action.
https://github.com/clivern/rakon
clivern elixir rakon
Last synced: 2 months ago
JSON representation
🔥 Phoenix Framework In Action.
- Host: GitHub
- URL: https://github.com/clivern/rakon
- Owner: Clivern
- License: mit
- Created: 2021-05-26T22:56:34.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-10T19:39:24.000Z (3 months ago)
- Last Synced: 2025-03-08T04:29:29.738Z (3 months ago)
- Topics: clivern, elixir, rakon
- Language: Elixir
- Homepage:
- Size: 356 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
## Rakon
To start the application:
- Install dependencies with `make deps`
- Create and migrate your database with `make migrate`
- Start the application with `make run` or `make i`Now you can visit [localhost:4000](http://localhost:4000) from your browser.
### Notes
To create a topic model & migration files.
```
$ mix phx.gen.schema Topic topic title:string
```### Database
To run `postgresql` with `docker`
```zsh
$ docker run -itd \
-e POSTGRES_USER=rakon \
-e POSTGRES_PASSWORD=rakon \
-p 5432:5432 \
--name postgresql \
postgres:latest
```### Versioning
For transparency into our release cycle and in striving to maintain backward compatibility, `Rakon` is maintained under the [Semantic Versioning guidelines](https://semver.org/) and release process is predictable and business-friendly.
See the [Releases section of our GitHub project](https://github.com/clivern/rakon/releases) for changelogs for each release version of `Rakon`. It contains summaries of the most noteworthy changes made in each release.
### Bug tracker
If you have any suggestions, bug reports, or annoyances please report them to our issue tracker at https://github.com/clivern/rakon/issues
### Security Issues
If you discover a security vulnerability within `Rakon`, please send an email to [[email protected]](mailto:[email protected])
### Contributing
We are an open source, community-driven project so please feel free to join us. see the [contributing guidelines](CONTRIBUTING.md) for more details.
### License
© 2022, Clivern. Released under [MIT License](https://opensource.org/licenses/mit-license.php).
**Rakon** is authored and maintained by [@clivern](http://github.com/clivern).