⚠️ This project is temporarily on hold!⚠️ I don't have the time or energy to update this right now but I will get back to it soon.
If you want to fix some of the parts and improve it, go ahead
Welcome to the ISYS 115 project! This repository contains the source code for my course project, which includes multiple interactive features and showcases modern web development techniques. Dive into the code, contribute, or simply explore the live site to see it in action.
You can either download and run the project locally or view the live site. Note that API functionalities are currently under construction (I'm learning how to handle secrets properly 😅).
- Live site: isys115.nicholasstull.com (API functions may not be fully operational)
What can I say, ¯\_(ツ)_/¯ I'm learning!
Follow these steps to set up the project locally:
- Clone the repository:
git clone https://github.com/tinkernerd/isys115.git
- Navigate to the project directory:
cd isys115
- Install dependencies:
npm install
- Optional: Replace API keys to enable external services (instructions below).
What can I say, ¯\_(ツ)_/¯ secrets are important. - Start the development server with live changes:
npm run watch
- To build and serve the project:
npm run go
Certain features require API keys. Follow these steps to set them up:
This feature fetches live aviation weather data.
- Visit AVWX REST API Getting Started.
- Click Register (bottom left) and follow the steps to create an account.
- Generate a new token under New Token.
- Replace the placeholder API key in the file:
- Path:
/src/views/projects/live-metar.html
- Line 36:
const apiKey = "Replace with your actual API key";
- Path:
This feature provides real-time weather data in the site's footer.
- Visit Tomorrow.io Weather API.
- Click Sign up for free and create an account.
- Once logged in, your API key is displayed at the top of the dashboard.
- Replace the placeholder API key in the file:
- Path:
/src/assets/js/footer.js
- Line 3:
const apiKey = "Replace with your actual API key";
- Path:
The project is organized as follows:
/src/ # Source files
├── assets/ # Static assets
│ ├── js/ # JavaScript files
│ ├── img/ # Images
│ └── scss/ # SCSS stylesheets (compiled to /dist/assets/css)
├── views/ # HTML views
│ ├── components/ # Reusable components
│ ├── notes/ # Notes for chapters
│ ├── projects/ # Project-specific HTML files
│ ├── 404.html # Custom 404 page
│ ├── about.html # About page
│ ├── contact.html # Contact page
│ └── index.html # Homepage
- Interactive Projects: Explore interactive projects in
/views/projects/
. - Modern SCSS Styling: Easily customizable styles using SCSS, compiled into clean CSS.
- Dynamic APIs: Includes integrations for real-time data (METAR and Weather).
- Organized File Structure: Clear and logical separation of assets, views, and components.
Contributions are welcome! Feel free to submit pull requests for bug fixes, new features, or improvements.
This project is licensed under MIT License. Feel free to use, modify, and distribute it.
- Integrate API secrets securely.
- Add more interactivity and features to the live site.
- Optimize SCSS and JavaScript for better performance.
- Improve documentation for contributors.
- Switch to Water.css?
If you have any questions or suggestions, feel free to reach out or open an issue.
Thanks for checking out my project! 😄