Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cloned down code does not match module content #1

Closed
lredmo1 opened this issue Nov 10, 2021 · 1 comment · Fixed by #2
Closed

cloned down code does not match module content #1

lredmo1 opened this issue Nov 10, 2021 · 1 comment · Fixed by #2
Labels
se curriculum Issue for lessons in the Software Engineering program

Comments

@lredmo1
Copy link

lredmo1 commented Nov 10, 2021

Canvas Link

https://learning.flatironschool.com/courses/4386/assignments/150153?module_item_id=318565

Concern

The module says instructs you to run rackup on the config.ru file and then open http://localhost:9292/hello to view it.

However, the module says the content of config.ru includes
get '/hello' do
'

Hello World!

'
end

when it actually includes

get '/' do
'

Hello World!

'
end

(There is no "hello" in the file path after get.) So when you open http://localhost:9292/hello it throws an error.

Additional Context

No response

Suggested Changes

The start code needs to change get '/' to get '/hello' in order for the instructions to work correctly.

@lredmo1 lredmo1 added the se curriculum Issue for lessons in the Software Engineering program label Nov 10, 2021
@ihollander
Copy link
Contributor

Hi @lredmo1 - thanks for flagging this! We'll update the starter code to match the example in the readme.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
se curriculum Issue for lessons in the Software Engineering program
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants