We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
Resources for developers working with the LOB Exam Scheduler system
# Clone the repository
git clone https://github.com/HonoreNiyomen/lob-exam-scheduler.git
cd lob-exam-scheduler
# Install dependencies
mix setup
# Start the server
mix phx.server
For development with IEx: iex -S mix phx.server
Configure PostgreSQL connection in config/dev.exs
Create .env file for secrets:
DATABASE_URL=postgres://user:pass@localhost:5432/lob_exam_dev
SECRET_KEY_BASE=your_secret_key_here
# Example Response
{
"data": [
{
"id": 1,
"name": "Mathematics Final",
"date": "2023-05-15",
"room": "A-204"
}
]
}
# Example Request
{
"exam": {
"name": "Chemistry Midterm",
"date": "2023-06-10",
"room_id": 3
}
}