https://github.com/pythoninthegrass/cc4e
C Programming for Everybody
https://github.com/pythoninthegrass/cc4e
c
Last synced: 4 months ago
JSON representation
C Programming for Everybody
- Host: GitHub
- URL: https://github.com/pythoninthegrass/cc4e
- Owner: pythoninthegrass
- License: mit
- Created: 2022-09-01T12:15:11.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-06T05:14:51.000Z (about 2 years ago)
- Last Synced: 2025-01-11T16:50:31.796Z (about 1 year ago)
- Topics: c
- Language: C
- Homepage: https://www.cc4e.com/index.php
- Size: 11.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# C Programming for Everybody
Course work for [Learn C Programming with Dr. Chuck](https://www.youtube.com/watch?v=j-_s8f5K30I).
## Quickstart
* Edit `project.conf`
### Bare metal
* Run `make start`
### Docker
```bash
# start container
docker-compose -f docker/docker-compose.yml up -d
# enter container
docker exec -it cc4e sh
# stop container
docker-compose -f docker/docker-compose.yml stop
# remove container
docker-compose -f docker/docker-compose.yml down
```
## Further Reading
* Source repo author: [Gustavo Pantuza](mailto:gustavopantuza@gmail.com)