Crypto-Nypto is a full-stack web application that allows users to fetch real-time cryptocurrency data, visualize trends using interactive Plotly charts, and securely manage their searches. The platform integrates with external crypto APIs, processes API requests efficiently, and stores user search history in a PostgreSQL database. The project is fully deployed on Heroku for live access.
-
Responsive landing page built with bootstrap 5
-
Secure authentication system with Django's built-in auth framework
-
Handle API requests & updates dynamically
-
Fetch real-time cryptocurrency data from an external API
-
Store user search history in a PostgreSQL database
-
Implement automated testing for reliability and performance
-
Generate interactive Plotly charts for crypto trend analysis
- Open your terminal and run the following commands:
- git clone https://github.com/dylanlongse/Crypto-Nypto.git
- cd Crypto-Nypto
- Create a virtual environment and activate it:
-
Run the following commands in the terminal (Windows):
- python -m venv .venv
- .venv\Scripts\Activate or venv\Scripts\activate
-
Run the following commands in the terminal (macOS/Linux)
- python3 -m venv .venv
- source .venv/bin/activate
- Install Dependencies
- Run the following commands in the terminal
- pip install -r requirements.txt
- Set Up Environment Variables
-
Create a .env file in the project's root directory and add the following:
- DEBUG=True
- SECRET_KEY=your_secret_key_here
- DATABASE_URL=sqlite:///db.sqlite3
-
Generate a secure Django Secret Key by running:
- python -c "import secrets; print(secrets.token_urlsafe(50))"
- replace your secret key value with what was returned from the previous command
- Update crypto_nypto/settings.py
-
In this file, delete the following:
- EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
- EMAIL_HOST = "smtp.gmail.com"
- EMAIL_PORT = 587
- EMAIL_USE_TLS = True
- EMAIL_HOST_USER = env.str("EMAIL_HOST_USER")
- EMAIL_HOST_PASSWORD = env.str("EMAIL_HOST_PASSWORD")
-
Add this to replace everything above:
- EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
- Migrate the database and run server locally
- Run the following in the terminal:
- python manage.py migrate
- python manage.py runserver
- Access the Application
- Once the server is running, open your browser and go to:
This project is open-source and licensed under the MIT License.
Feel free to fork, modify, and contribute!


