We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In this quiz, I removed the nighthawk directory from the home directory and then recreated it, launching my own blog again on localhost.
To remove the directory, to get started with the quiz, you first have to run rm -rf nighthawk.
rm -rf nighthawk
Now, our nighthawk directory where our code originally was is deleted.
Now, we need to make a new, fresh nighthawk directory to store our student and portfolio repositories. We do this by running the following commands:
mkdir nighthawk cd nighthawk
Then, once we're in the directory, we can clone our student and Mr. Mortensens portfolio repository.
git clone https://github.com/Hypernova101/MihirCSP.git git clone https://github.com/nighthawkcoders/portfolio_2025.git
Now, to access my code, I need to run the following command: code MihirCSP
code MihirCSP
To open the virtual environment, we run the command source venv/bin/activate.
source venv/bin/activate
Now, we can run the make command to open our blog on localhost. Here, live changes are reflected, and once we're happy, we can push it to GitHub.
make
This is how localhost looks like on my student repository:
And this is how localhost looks like on the portfolio repository.
Now, all we have to do is push our code to GitHub to save, and we're done!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Remember Forever Quiz
In this quiz, I removed the nighthawk directory from the home directory and then recreated it, launching my own blog again on localhost.
Step 1: Remove Nighthawk Directory
To remove the directory, to get started with the quiz, you first have to run
rm -rf nighthawk
.Now, our nighthawk directory where our code originally was is deleted.
Step 2: Making a new directory
Now, we need to make a new, fresh nighthawk directory to store our student and portfolio repositories. We do this by running the following commands:
Then, once we're in the directory, we can clone our student and Mr. Mortensens portfolio repository.
Now, to access my code, I need to run the following command:
code MihirCSP
Step 3: Opening Virtual Environment and Deploying
To open the virtual environment, we run the command
source venv/bin/activate
.Now, we can run the
make
command to open our blog on localhost. Here, live changes are reflected, and once we're happy, we can push it to GitHub.This is how localhost looks like on my student repository:
And this is how localhost looks like on the portfolio repository.
Now, all we have to do is push our code to GitHub to save, and we're done!
The text was updated successfully, but these errors were encountered: