Skip to content

karnse/seed-zero-backend

 
 

Repository files navigation

Seed: Zero Backend Starter code

This exercise is for Backend session in Seed: Zero.
To make sure you understand the material, there are some requirements:

  • Backend is runnable.
  • Backend has a top-level endpoint /
  • Backend can calculate a simple math in the path /calculator

Contribution

Environment

Name Version
Python 3.9

Installation

If you can use GitHub

  1. Fork this repository.

  2. Clone the project to your local machine. Open a terminal first and go to some directory.

git clone https://github.com/{your-github-account}/seed-zero-backend.git
  1. Go to your cloned directory in your machine
cd seed-zero-backend
  1. use python virtual environment
python -m venv venv
  1. Use the virtual environment
  • for MacOS/Linux
source venv/bin/activate
  • for Windows
.\venv\Scripts\activate
  1. Install dependencies
pip install -r requirements.txt
  1. Run the app
uvicorn main:app --reload
  1. Edit code in #TODO in app.py
  2. Test whether your code works by open these url in your browser.
  1. Upload your work
git add .
git commit -m "Finish work"
git push
  1. Open Pull Request in this repository.
  2. Go to your opened Pull Request and click the link in comment.

If you cannot use GitHub

  1. Download this project as zip in the green button with text "Code", select Download ZIP. Screen Shot 2565-08-27 at 20 51 13
  2. Extract file and open a terminal in the project's directory. use python virtual environment
python -m venv venv
  1. Use the virtual environment
  • for MacOS/Linux
source venv/bin/activate
  • for Windows
.\venv\Scripts\activate
  1. Install dependencies
pip install -r requirements.txt
  1. Run the app
uvicorn main:app --reload
  1. Edit code in #TODO in app.py
  2. Test whether your code works by open these url in your browser.
  1. Finish!

About

Seed: Zero Training Exercise

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 73.2%
  • Dockerfile 26.8%