https://github.com/pmuens/rumbl
https://github.com/pmuens/rumbl
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pmuens/rumbl
- Owner: pmuens
- Created: 2020-08-27T13:00:19.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-02T10:30:06.000Z (about 5 years ago)
- Last Synced: 2025-05-15T10:44:12.759Z (5 months ago)
- Language: Elixir
- Size: 161 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rumbl
## Development
- Install dependencies with `mix deps.get`
- Create and migrate your database with `mix ecto.setup`
- Install Node.js dependencies with `npm install` inside the `assets` directory
- Start Phoenix endpoint with `mix phx.server`Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
## Useful commands
- `iex -S mix`
- `:observer.start()`
- `mix test []`
- `mix ecto.migrate`
- `mix ecto.rollback`
- `mix phx.routes`
- `mix deps.get`
- `mix run priv/repo/seeds.exs`
- `mix ecto.gen.migration create_categories`
- `mix phx.gen.presence`
- `mix phx.gen.schema Multimedia.Category categories name:string`
- `mix phx.gen.context Multimedia Category categories name:string`
- `mix phx.gen.html Multimedia Video videos user_id:references:users url:string`
- Context: `Multimedia`
- Module that defines the schema: `Video`
- Plural form of the schema name: `videos`
- Fields with type information