Code Confidence is a project I designed for my final capstone at Nashville Software School. This app was inspired by my learning journey of becoming a full-stack software engineer at NSS and the issues I came across. The intended purpose of this app is to help keep the scope of what you're learning limited to what you know versus what you don't know. To achieve this, the user can add technologies they know and keep track of the goals and respective topics they set for themselves
Looking for Client Side?
Explore the docs »
- Walkthrough Overview
- Features
- Deployement
- Installations
- Running Locally
- Testing
- Roadmap
- Planning
- Feedback
- Acknowldegements
- Tech Stack and Resources
- Login in with Google
- Easy creation using Google Firebase.
- Stay motivated with postive affirmations.
- Responsive designed centered for Desktop.
- Select All feature allows for easy creation.
- Search, filter, and toggle topics and goals.
- CRUD on Goals and Topics.
- Create Goals and Topics for the technology you're learning
- Track the progress of you learning goals.
- Explore programming languages, frameworks, and libraries
- Create and assign your browser bookmarks through the app(comming soon).
To run this locally you will need to have these installations complete:
- python
- pipenv
- django
- autopep8
- pylint
- djangorestframework
- django-cors-headers
- pylint-django
Please follow instructions for downloading Python and packages.
Clone the project
git clone https://github.com/Massacre-Saint/Code-Confidence-Server.git
Go to the project directory
cd Code-Confidence-Server
Install Packages & Setup Virtual Enviroment
pipenv install
pipenv shell
Make Mirgations
python manage.py makemigrations ccapi
python manage.py migrate
Seed the Database
python manage.py loaddata messages
python manage.py loaddata tech
Start the server
python manage.py runserver
If you're not able to run server make sure your virtual enviroment is running.
Endpoint in Postman:
http://127.0.0.1:8000/messages
This response should be a random message from db.
http://127.0.0.1:8000/tech
Should get back 200 with list of tech If any issues occur please reach out here!
Coming very soon and currently in progress and testing.
- Synching with Chrome Bookmarks
- Allows users to add their browser bookmarks to topics,tech, goals.
- Able to update the assigned bookmark and keep track of the resource.
- Comes with extension to handle bookmarks associated with the app.
- Will allow users to message admin for features, bug, and tech to be added.
- Users will be able to create and link projects they want to showcase.
- Mimics a portfolio page.
- Assignes the topics, goals, and tech that helped to acheive the project.
If you have any feedback, please reach out to us at fake@fake.com
- Awesome Readme Templates
- Awesome README
- How to write a Good readme
- React Icons
- React Responsive
- Midjourney
- @rustyzone
- cohort E-19
Client: React, JS, React Bootstrap, Chrome Bookmarks API, Chrome Extensions, Next.js
Server: Django, Python