From the course: Level up LLM applications development with LangChain and OpenAI
Unlock the full course today
Join today to access over 24,800 courses taught by industry experts.
Create a GitHub repository and push your project
From the course: Level up LLM applications development with LangChain and OpenAI
Create a GitHub repository and push your project
- [Instructor] So now we are ready to get started and the first step will be to create a new project, a new GitHub repository to push to GitHub. And so for this project, as a reminder, we need to be working from a separate project. So I've created a separate project that I named RAG-REST.API. And so here you're going to find inside a .gitignore. So we must specify the directories, but also the files that we don't need to push remotely for security reasons. For example, the .env file, that includes your secrets and environment variables. So for example here, the OPENAI_API_KEY, that must remain private and used locally only. So we're going to make sure that we add a .gitignore file and that we specify here this list that will never be pushed remotely. We also have instructions here, so the README file, so instructions all the way to the bottom. So as to how to deploy live to Render, we're going to follow this link. And here we're going to focus on this first stage, which is to create…