API service for airport management written on DRF
- JWT authenticated
- Admin panel /admin/
- Documentation is located at /api/doc/swagger/
- Creating airplanes with airplanes type
- Creating route and airports
- Creating crew and flights!
- Order system
Install PostgresSQL and create db
- Clone the repository:
git clone https://github.com/your-username/airport_api
- Change to the project's directory:
cd airport_api
-
Сopy .env_sample file with your examples of env variables to your .env file
-
Once you're in the desired directory, run the following command to create a virtual environment:
python -m venv venv
- Activate the virtual environment:
On macOS and Linux:
source venv/bin/activate
On Windows:
venv\Scripts\activate
- Install the dependencies
pip install -r requirements.txt
- Set up the database:
Run the migrations
python manage.py migrate
- Start the development server
python manage.py runserver
- Access the website locally at http://localhost:8000.
Docker should be installed
docker-compose build
docker-compose up
- get access token via /api/user/token/ by
email = [email protected]
password = user123123
or register you own user via /api/users/ and get access token