CodeINN is an instant code editor 📃, that makes programming and development easier. Practice quickly and directly from your web browser, without any setup needed. CodeINN gives the perfect environment to developers 👨💻 , coders 💻 , and geeks 🤓 to do more with their tech.
- Django
- Django Rest Framework
- Heroku
- Sqllite3
- Fork and Clone the repo using
git clone https://github.com/rajat2502/CodeINN.git
cd CodeINN
- Change Branch to
backend
using
git checkout backend
- Setup Virtual environment
python3 -m venv env
- Activate the virtual environment
source env/bin/activate
- Install dependencies using
pip install -r requirements.txt
- Make migrations using
python manage.py makemigrations
- Migrate Database
python manage.py migrate
- Create a superuser
python manage.py createsuperuser
- Run server using
python manage.py runserver
- Add API endpoints for Login/Signup
- Add API endpoints to add/update/delete code
- Add API documentation using Postman
- Deploy APIs to Heroku