Phoenixプロジェクトのセットアップと構造
新しいPhoenixプロジェクトを作成し、ディレクトリ構造を理解して、ルーターやコントローラーなどの主要コンポーネントを確認します。
「Phoenixプロジェクトのセットアップと構造」はCoddyKit上の無料Elixir & Phoenix: Scalable Backend Developmentレッスンです。 これはレッスン1/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはElixir & Phoenix: Scalable Backend Development学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Elixir & Phoenix: Scalable Backend Developmentコースには全4レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
Welcome to Phoenix!
Hello! In this lesson, we'll begin our journey with Phoenix, Elixir's powerful web framework. Phoenix helps you build robust, high-performance web applications and APIs.
It leverages the speed and fault-tolerance of the Erlang Virtual Machine (BEAM) through Elixir, making it ideal for real-time features and concurrent systems.
Why Choose Phoenix?
Phoenix combines the elegance of Elixir with the reliability of Erlang/OTP. This means your applications can handle many concurrent users with low latency and are highly resilient to failures.
It's a fantastic choice for building anything from simple websites to complex real-time applications like chat rooms or live dashboards.
Setup Your Environment
Before we create a Phoenix project, ensure you have Elixir and Erlang installed on your system. You can check your versions using the commands below.
If you don't have them, consider using asdf for easy installation and version management.
elixir -v
mix -vGenerating a New Project
The easiest way to start a new Phoenix project is by using the mix phx.new command. This command sets up a new application with all the necessary files and dependencies.
Let's create our first project, named hello_phoenix:
mix phx.new hello_phoenixUnderstanding Project Structure
After running mix phx.new hello_phoenix, a new directory named hello_phoenix is created. Inside, you'll find a well-organized set of folders and files.
This structure helps keep your code modular and maintainable as your application grows.
Key Project Folders
Let's look at some of the top-level directories:
assets/: Contains your frontend files like CSS, JavaScript, and images.config/: Holds configuration files for different environments (development, test, production).priv/: Stores private application resources, such as database migrations and static files not served directly.
`lib/` - Your Application Code
The lib/ directory is the heart of your Elixir application. For Phoenix projects, it usually contains two main sub-directories:
lib/hello_phoenix/: Your core application logic and business rules.lib/hello_phoenix_web/: Web-specific components like controllers, views, and routers.
This separation helps keep your web interface distinct from your core logic.
hello_phoenix/
├── lib/
│ ├── hello_phoenix/
│ └── hello_phoenix_web/Introducing the Router
Inside lib/hello_phoenix_web/, you'll find router.ex. The router is like the traffic cop of your web application.
It defines how incoming web requests (like visiting a URL) are mapped to specific actions within your application, typically handled by controllers.
# lib/hello_phoenix_web/router.ex
defmodule HelloPhoenixWeb.Router do
use HelloPhoenixWeb, :router
pipeline :browser do
plug :accepts, ["html"]
plug :fetch_session
plug :fetch_flash
plug :put_root_layout, {HelloPhoenixWeb.LayoutView, :root}
plug :protect_from_forgery
plug :put_secure_browser_headers
end
scope "/", HelloPhoenixWeb do
pipe_through :browser
get "/", PageController, :index
end
endRunning Your Phoenix App
After generating your project and installing dependencies (mix deps.get), you can start the development server. This compiles your code and makes your application accessible in your browser, usually at localhost:4000.
Navigate into your project directory first!
cd hello_phoenix
mix phx.serverQuick Check: Project Structure
The mix phx.new command creates a standard Phoenix project. Which directory is typically used for frontend assets like CSS and JavaScript?
Lesson Summary
Great job! You've successfully created your first Phoenix project using mix phx.new. We explored the basic directory structure, including assets/, config/, lib/, and priv/.
You now have an understanding of where your core application logic lives (lib/hello_phoenix) and where web-specific components reside (lib/hello_phoenix_web), including the crucial router.ex. Next, we'll dive deeper into how routing works and how controllers handle requests!
よくある質問
「Phoenixプロジェクトのセットアップと構造」レッスンは無料ですか?
はい。「Phoenixプロジェクトのセットアップと構造」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Elixir & Phoenix: Scalable Backend Developmentコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Elixir & Phoenix: Scalable Backend Developmentコースには全4レッスンが含まれています。
「Phoenixプロジェクトのセットアップと構造」で何を学びますか?
新しいPhoenixプロジェクトを作成し、ディレクトリ構造を理解して、ルーターやコントローラーなどの主要コンポーネントを確認します。 ブラウザで直接実行するハンズオンコードでElixir & Phoenix: Scalable Backend Developmentを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
Elixir & Phoenix: Scalable Backend Developmentを始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのElixir & Phoenix: Scalable Backend Developmentは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン1/4です。
「Phoenixプロジェクトのセットアップと構造」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このElixir & Phoenix: Scalable Backend Developmentレッスンでコードを書いて実行できますか?
はい。すべてのElixir & Phoenix: Scalable Backend Developmentレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。
このコースのすべてのレッスン
- Phoenixプロジェクトのセットアップと構造
- ルーティング、コントローラー、Plug
- ビュー、テンプレート、LiveViewの基礎
- Phoenix Channelsによるリアルタイム機能