Jupyter Notebook Clone is a web application that allows users to create, edit, and run notebooks containing code snippets and markdown content. You can view a live demo here. This README provides instructions for setting up and running both the frontend and backend components of the application.
- Install the required dependencies:
cd backend
pip install -r requirements.txt
-
Set up environment variables by creating a
.env
file and populating it with the necessary values. Example file can be found inbackend/.env.example
. -
Start the backend server:
uvicorn main:app --reload
The backend server will run at localhost:8000. You can access the FastAPI OpenAPI schema at localhost:8000/docs or localhost:8000/redoc.
Note: Make sure you have MongoDB and Supabase set up and running.
- Install the required dependencies:
cd frontend
npm install
- Start the frontend development server:
npm run dev
The frontend development server will run at localhost:3000. You can access the running application by opening this URL in your web browser.