Skip to content
Snippets Groups Projects
Commit 0636fbcc authored by jjd358's avatar jjd358
Browse files

Merge branch '0-setup-initial-server' into 'main'

0-setup-initial-server - Create directory structure, .gitignore, etc. app.js...

See merge request !1
parents c9ac6510 aec8858d
No related branches found
No related tags found
1 merge request!10-setup-initial-server - Create directory structure, .gitignore, etc. app.js...
node_modules
# web-dev
This is a repository for the CS375 Web Development course at Drexel University. The repository will contain code for the term project.
<!--
## Getting started
To make it easy for you to get started with GitLab, here's a list of recommended next steps.
......@@ -91,3 +92,4 @@ For open source projects, say how it is licensed.
## Project status
If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
-->
app.js 0 → 100644
env 0 → 100644
This diff is collapsed.
{
"name": "web-dev",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"jest": "^29.7.0"
}
}
test('this is a test', () => {
expect(1 + 2).toBe(3);
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment