This is a Microservice for managing Excel files
It runs on the Django Framework, supported by Django Rest Framework
git clone https://github.com/microapidev/excel-microapi
cd excel-microapi
python -m venv venv
.\venv\Scripts\activate
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver
Make a Post request with Postman. You can download it here
If you are going to be making changes or adding features to this Project please do the following:
-
Clone the project, if you have not done so, see here
-
Create a Fork. Here is how to:
Keep track of the URL to the forked repository. It should usually be something like:
https://github.com/<your_github_username>/excel-microapi
-
git remote origin set-url --push <insert forked url here>
example:
git remote origin set-url --push https://github.com/mark/excel-microapi
-
First pull the recent changes changes before creating a branch
git pull git branch <feature_i_want_to_add>
Work on your new changes and then push to your branch
git push -u origin <feature_i_want_to_add>