Website built for the Django Fest KC event. Made by Liz Wait
- Node.js (https://nodejs.org/)
- npm (Node Package Manager, comes with Node.js)
- Clone the repository:
git clone [email protected]:KansasCityWomeninTechnology/django-fest-official.git
- Change directories to project:
cd django-fest-official
-
Start a local server:
node server.js
-
Open your browser and navigate to:
http://localhost:8080/
src/index.html
: The main HTML file.src/styles.css
: The main CSS file.src/script.js
: The main JavaScript file.src/sections/
: Directory containing HTML files for each section.
- Create a new HTML file in the
sections
directory. - Add a new entry to the
getSections
function inscript.js
with the appropriateid
andfile
path.
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes.
- Build the site locally to ensure your changes worked and did not produce any bugs.
- Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin feature-branch
). - Open a pull request.
- Your pull request will need to be approved by another contributor.
- Create PR for your updates.
- Once PR has been approved by another reviewer, merge your PR to master.
- Github Actions will auto deploy changes if merged to master branch.
This project is licensed under the MIT License - see the LICENSE file for details.