Skip to content

Fixed the issue by adding the .env_template and .env file #89

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions challenge/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
SERVER_URL=http://localhost:4001
# This is a mandatory field to run the server, please enter a value
# For example: 5000
SERVER_PORT=4000
4 changes: 4 additions & 0 deletions challenge/.env.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
SERVER_URL=
# This is a mandatory field to run the server, please enter a value
# For example: 5000
SERVER_PORT=
2 changes: 1 addition & 1 deletion challenge/contracts/algorand-puzzle-2.algo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { Contract } from '@algorandfoundation/tealscript';
// eslint-disable-next-line no-unused-vars
class AlgorandPuzzle2 extends Contract {
solveThePuzzle(): string {
// return 'You solved the puzzle!';
return 'You solved the puzzle!';
}
}