User contributions for Admin
5 December 2023
- 19:1519:15, 5 December 2023 diff hist +44 How to Render RSS Feeds in Elixir Phoenix No edit summary
- 19:1219:12, 5 December 2023 diff hist +20 How to Render RSS Feeds in Elixir Phoenix No edit summary
- 19:1219:12, 5 December 2023 diff hist +815 N How to Render RSS Feeds in Elixir Phoenix Created page with "This is an example of how to capture and display an RSS feed in Phoenix. You must first install the '''Feedex''' RSS package. * https://www.hex.pm/packages/feedex * https://hexdocs.pm/feedex/Feedex.html * https://github.com/diegocurbelo/feedex Below is a LiveView example that uses the above package to render contents of an RSS feed to the browser. The raw() method comes with Elixir Phoenix and is used to sanitize HTML. ==Example== <source> defmodule AppWeb.PageLi..."
3 December 2023
- 20:4720:47, 3 December 2023 diff hist +885 How to Use Built-In Phoenix Authentication No edit summary current
- 02:1802:18, 3 December 2023 diff hist +630 How to Use Built-In Phoenix Authentication No edit summary
- 02:1002:10, 3 December 2023 diff hist +395 N How to Use Built-In Phoenix Authentication Created page with "{{In_progress}} <hr/> Phoenix has a built in authentication generator. To use the feature, you can run the following command: <source> mix phx.gen.auth Accounts User users </source> You are asked to choose the form of authentication that you want. The 2 choices are LiveView authentication or Controller based authentication. ==LiveView Authentication== ==Controller Based Authentication=="
16 November 2023
- 21:0121:01, 16 November 2023 diff hist +158 User:Admin No edit summary
2 November 2023
- 15:1015:10, 2 November 2023 diff hist +44 User:Admin No edit summary
29 October 2023
- 07:2907:29, 29 October 2023 diff hist +8 Elixir Phoenix PubSub Tutorial No edit summary current
- 06:2306:23, 29 October 2023 diff hist −38 Elixir Phoenix PubSub Tutorial No edit summary
- 06:1806:18, 29 October 2023 diff hist +30 Elixir Phoenix PubSub Tutorial No edit summary
- 06:1506:15, 29 October 2023 diff hist −25 Elixir Phoenix PubSub Tutorial No edit summary
- 06:1106:11, 29 October 2023 diff hist +18 Elixir Phoenix PubSub Tutorial No edit summary
- 05:0305:03, 29 October 2023 diff hist +1 Elixir Phoenix PubSub Tutorial No edit summary
- 05:0205:02, 29 October 2023 diff hist +86 Elixir Phoenix PubSub Tutorial No edit summary
- 04:4804:48, 29 October 2023 diff hist −44 Elixir Phoenix PubSub Tutorial No edit summary
- 04:4804:48, 29 October 2023 diff hist +5 Elixir Phoenix PubSub Tutorial No edit summary
28 October 2023
- 16:1016:10, 28 October 2023 diff hist 0 Template:Liveview basics required No edit summary current
- 16:1016:10, 28 October 2023 diff hist +110 Template:Liveview basics required No edit summary
- 16:0716:07, 28 October 2023 diff hist +525 N Template:Liveview basics required Created page with "This document assumes that you understand the basics of Liveview. This includes: * Phoenix and Elixir installation * Create an empty starter application * How to create a basic Liveview application * How to perform basic form submission * How_to_Iterate_and_Render_Database_Data_in_Phoenix_LiveView..."
- 02:1802:18, 28 October 2023 diff hist 0 MediaWiki:Common.css No edit summary
- 02:1802:18, 28 October 2023 diff hist +10 MediaWiki:Common.css No edit summary
- 02:1702:17, 28 October 2023 diff hist 0 MediaWiki:Common.css No edit summary
- 02:1602:16, 28 October 2023 diff hist +26 MediaWiki:Common.css No edit summary
20 October 2023
- 20:4720:47, 20 October 2023 diff hist +2,487 User:Admin No edit summary
- 20:1120:11, 20 October 2023 diff hist +17 Create Foreign Key Relationship Between Ecto Tables No edit summary current
- 20:1020:10, 20 October 2023 diff hist +39 Create Foreign Key Relationship Between Ecto Tables No edit summary
- 14:0814:08, 20 October 2023 diff hist −14 How to Move a Phoenix Project to a Different Development Server No edit summary current
- 14:0714:07, 20 October 2023 diff hist +349 N How to Move a Phoenix Project to a Different Development Server Created page with " Remove '''_build''' and '''deps''' directories. Make sure your migration files are available in '''priv/repo/migrations''' If you are using a different database, in config/dev make sure your database credentials are set properly for the new database. '''run:''' * mix deps.get + compile * mix ecto.create * mix ecto.migrate * mix phx.server *"
19 October 2023
- 16:5016:50, 19 October 2023 diff hist +12 Welcome to ElixirBlocks No edit summary current
- 16:5016:50, 19 October 2023 diff hist +75 Welcome to ElixirBlocks No edit summary
- 16:2716:27, 19 October 2023 diff hist +13 Create Foreign Key Relationship Between Ecto Tables No edit summary
- 16:1716:17, 19 October 2023 diff hist −1 How to Generate a Migration File No edit summary current
- 16:1616:16, 19 October 2023 diff hist +75 How to Set a Unique Constraint to a Table Field No edit summary current
- 16:1416:14, 19 October 2023 diff hist −20 How to Generate a Migration File No edit summary
- 16:1216:12, 19 October 2023 diff hist +15 How to Generate a Migration File No edit summary
- 16:1216:12, 19 October 2023 diff hist −3 How to Generate a Migration File No edit summary
- 16:1116:11, 19 October 2023 diff hist +910 N How to Generate a Migration File Created page with "A migration file lets you update and create table data. ==Generate a migration file== A migration file is generated using a console command. After it is generated, you write code that configures table fields and then invoke the migration file. The command to create a migration file is: <source> mix ecto.gen.migration name_of_migration </source> For this example, I will add a new field named owner <source> mix ecto.gen.migration create_owner_field </source> The mi..."
- 16:0416:04, 19 October 2023 diff hist +1 How to Set a Unique Constraint to a Table Field No edit summary
- 15:5615:56, 19 October 2023 diff hist +288 How to Set a Unique Constraint to a Table Field No edit summary
- 15:5515:55, 19 October 2023 diff hist +199 N How to Set a Unique Constraint to a Table Field Created page with "If you already have a table and retroactively want to set a field to only allow unique values, you need to create a migration with: <source> create unique_index(:table_name, [:field_name]) </source>"
- 13:5413:54, 19 October 2023 diff hist +65 User:Admin No edit summary
- 13:3913:39, 19 October 2023 diff hist +94 N How to Delete A Table That has many Without Deleting Children Admin moved page How to Delete A Table That has many Without Deleting Children to How to Delete A Table That Contains a "has many" Value Without Deleting Children current Tag: New redirect
- 13:3913:39, 19 October 2023 diff hist 0 m How to Delete A Table That Contains a "has many" Value Without Deleting Children Admin moved page How to Delete A Table That has many Without Deleting Children to How to Delete A Table That Contains a "has many" Value Without Deleting Children current
- 13:3813:38, 19 October 2023 diff hist +1,363 N How to Delete A Table That Contains a "has many" Value Without Deleting Children Created page with " If you have a table that you are trying to delete and the table contains a has_many relationship, you may get an error similar to the one below when you attempt to delete the parent table. ===Error=== <source> constraint error when attempting to delete struct: * item_id_fkey (foreign_key_constraint) If you would like to stop this constraint violation from raising an exception and instead add it as an error to your changeset, please call `foreign_key_constraint/3`..."
- 11:2111:21, 19 October 2023 diff hist +1 Create Foreign Key Relationship Between Ecto Tables No edit summary
- 11:2011:20, 19 October 2023 diff hist −4 Create Foreign Key Relationship Between Ecto Tables No edit summary
- 11:1511:15, 19 October 2023 diff hist +62 Create Foreign Key Relationship Between Ecto Tables No edit summary
- 11:1411:14, 19 October 2023 diff hist +62 Create Foreign Key Relationship Between Ecto Tables No edit summary
18 October 2023
- 21:0121:01, 18 October 2023 diff hist +65 User:Admin No edit summary