Skip to main content
Homepage
Explore
Search or go to…
/
Sign in
Explore
Primary navigation
Project
dunixir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Collapse sidebar
Snippets
Groups
Projects
Show more breadcrumbs
teaching
dunixir
Merge requests
!17
add http server files
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
add http server files
thomas
into
dev
Overview
0
Commits
5
Pipelines
1
Changes
5
Closed
add http server files
BARBIER Thomas
requested to merge
thomas
into
dev
Jan 14, 2021
Overview
0
Commits
5
Pipelines
1
Changes
5
0
0
Merge request reports
Viewing commit
eb850408
Previous
Next
Show latest version
5 files
+
287
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
eb850408
ajout des methodes à remplir pour le server http
· eb850408
BARBIER Thomas
authored
Jan 8, 2021
lib/dunixir/application.ex
+
2
−
1
View file @ eb850408
Edit in single-file editor
Open in Web IDE
Show full file
@@ -9,7 +9,8 @@ defmodule Dunixir.Application do
children
=
[
# Starts a worker by calling: Dunixir.Worker.start_link(arg)
# {Dunixir.Worker, arg}
]
Plug
.
Adapters
.
Cowboy
.
child_spec
(
scheme:
:http
,
plug:
ServerHttp
.
Router
,
options:
[
port:
8085
])
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
Loading