Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naoyamiyagawa/tutors2022
https://github.com/naoyamiyagawa/tutors2022
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/naoyamiyagawa/tutors2022
- Owner: NaoyaMiyagawa
- Created: 2022-03-26T12:53:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-14T13:13:49.000Z (over 2 years ago)
- Last Synced: 2024-10-15T02:39:54.346Z (about 1 month ago)
- Language: PHP
- Homepage: vue-niconico-calendar.vercel.app
- Size: 354 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tutors2022
## NicoCalendar
- HTML ver.
- Vanilla JS
- http://localhost:8080/index.html
- jQuery
- http://localhost:8080/index-jquery.html
- PHP ver. (runnable on docker (php-apache))
- PHP
- http://localhost:8080/index.php
- phpinfo
- http://localhost:8080/info.php### Docker
```bash
# build
docker image build -t my-php-apache ./docker# run
docker run --privileged -it --rm -v $(pwd):/var/www/html -p 8080:80 --name test my-php-apache# exec
docker exec test bash# check apache2 running ( # apachectl start )
$ service apache2 status
```### Docker Compose
```bash
docker compose up -d --build
docker compose exec web bash
```