https://github.com/dwarvesf/liulo-backend
The Simplest Interactive Q&A Opensource Platform At Events - Backend
https://github.com/dwarvesf/liulo-backend
Last synced: about 2 months ago
JSON representation
The Simplest Interactive Q&A Opensource Platform At Events - Backend
- Host: GitHub
- URL: https://github.com/dwarvesf/liulo-backend
- Owner: dwarvesf
- Created: 2018-09-24T08:15:25.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2018-12-07T11:22:33.000Z (over 7 years ago)
- Last Synced: 2025-07-23T13:50:20.812Z (11 months ago)
- Language: Elixir
- Size: 277 KB
- Stars: 2
- Watchers: 6
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# liulo
> My Elixir Phoenix Project
## Setup your project before run
Update content in `config/dev.exs` and `config/test.exs`
```Elixir
# Configure your database
config :liulo, liulo.Repo,
adapter: Ecto.Adapters.Postgres,
username: System.get_env("POSTGRES_USER") || "postgres",
password: System.get_env("POSTGRES_PASSWORD") || "postgres",
hostname: System.get_env("POSTGRES_HOST") || "localhost",
database: "liulo_(dev|test)",
pool_size: 10
```
## How to run your project
```
make run
```
## How to test your project
```
make test
```
## How to run mix tasks
```
docker-compose run --rm web mix ...
```
## About this app
- Our app description https://github.com/dwarvesf/liulo
- Our database diagram [here](document/Database.md "Liulo Database Diagram")
## How to contribute to our project
1. Please follow git-flow guideline https://github.com/dwarvesf/team/blob/master/gitlab.md
2. Assign your self in unassign issues
## License
MIT © [Dwarves Team](https://dwarves.foundation/ "Dwarves Homepage")